home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / tusrc.zip / LIB / REGEX.C < prev    next >
C/C++ Source or Header  |  1993-09-18  |  172KB  |  5,087 lines

  1. /* Extended regular expression matching and search library,
  2.    version 0.12.
  3.    (Implements POSIX draft P10003.2/D11.2, except for
  4.    internationalization features.)
  5.  
  6.    Copyright (C) 1993 Free Software Foundation, Inc.
  7.  
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2, or (at your option)
  11.    any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* AIX requires this to be the first thing in the file. */
  23. #if defined (_AIX) && !defined (REGEX_MALLOC)
  24.   #pragma alloca
  25. #endif
  26.  
  27. #define _GNU_SOURCE
  28.  
  29. /* We need this for `regex.h', and perhaps for the Emacs include files.  */
  30. #include <sys/types.h>
  31.  
  32. #ifdef HAVE_CONFIG_H
  33. #include "config.h"
  34. #endif
  35.  
  36. /* The `emacs' switch turns on certain matching commands
  37.    that make sense only in Emacs. */
  38. #ifdef emacs
  39.  
  40. #include "lisp.h"
  41. #include "buffer.h"
  42. #include "syntax.h"
  43.  
  44. /* Emacs uses `NULL' as a predicate.  */
  45. #undef NULL
  46.  
  47. #else  /* not emacs */
  48.  
  49. /* We used to test for `BSTRING' here, but only GCC and Emacs define
  50.    `BSTRING', as far as I know, and neither of them use this code.  */
  51. #if HAVE_STRING_H || STDC_HEADERS
  52. #include <string.h>
  53. #ifndef bcmp
  54. #define bcmp(s1, s2, n)    memcmp ((s1), (s2), (n))
  55. #endif
  56. #ifndef bcopy
  57. #define bcopy(s, d, n)    memcpy ((d), (s), (n))
  58. #endif
  59. #ifndef bzero
  60. #define bzero(s, n)    memset ((s), 0, (n))
  61. #endif
  62. #else
  63. #include <strings.h>
  64. #endif
  65.  
  66. #ifdef STDC_HEADERS
  67. #include <stdlib.h>
  68. #else
  69. char *malloc ();
  70. char *realloc ();
  71. #endif
  72.  
  73.  
  74. /* Define the syntax stuff for \<, \>, etc.  */
  75.  
  76. /* This must be nonzero for the wordchar and notwordchar pattern
  77.    commands in re_match_2.  */
  78. #ifndef Sword 
  79. #define Sword 1
  80. #endif
  81.  
  82. #ifdef SYNTAX_TABLE
  83.  
  84. extern char *re_syntax_table;
  85.  
  86. #else /* not SYNTAX_TABLE */
  87.  
  88. /* How many characters in the character set.  */
  89. #define CHAR_SET_SIZE 256
  90.  
  91. static char re_syntax_table[CHAR_SET_SIZE];
  92.  
  93. static void
  94. init_syntax_once ()
  95. {
  96.    register int c;
  97.    static int done = 0;
  98.  
  99.    if (done)
  100.      return;
  101.  
  102.    bzero (re_syntax_table, sizeof re_syntax_table);
  103.  
  104.    for (c = 'a'; c <= 'z'; c++)
  105.      re_syntax_table[c] = Sword;
  106.  
  107.    for (c = 'A'; c <= 'Z'; c++)
  108.      re_syntax_table[c] = Sword;
  109.  
  110.    for (c = '0'; c <= '9'; c++)
  111.      re_syntax_table[c] = Sword;
  112.  
  113.    re_syntax_table['_'] = Sword;
  114.  
  115.    done = 1;
  116. }
  117.  
  118. #endif /* not SYNTAX_TABLE */
  119.  
  120. #define SYNTAX(c) re_syntax_table[c]
  121.  
  122. #endif /* not emacs */
  123.  
  124. /* Get the interface, including the syntax bits.  */
  125. #include "regex.h"
  126.  
  127. /* isalpha etc. are used for the character classes.  */
  128. #include <ctype.h>
  129.  
  130. /* Jim Meyering writes:
  131.  
  132.    "... Some ctype macros are valid only for character codes that
  133.    isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
  134.    using /bin/cc or gcc but without giving an ansi option).  So, all
  135.    ctype uses should be through macros like ISPRINT...  If
  136.    STDC_HEADERS is defined, then autoconf has verified that the ctype
  137.    macros don't need to be guarded with references to isascii. ...
  138.    Defining isascii to 1 should let any compiler worth its salt
  139.    eliminate the && through constant folding."  */
  140. #if ! defined (isascii) || defined (STDC_HEADERS)
  141. #undef isascii
  142. #define isascii(c) 1
  143. #endif
  144.  
  145. #ifdef isblank
  146. #define ISBLANK(c) (isascii (c) && isblank (c))
  147. #else
  148. #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
  149. #endif
  150. #ifdef isgraph
  151. #define ISGRAPH(c) (isascii (c) && isgraph (c))
  152. #else
  153. #define ISGRAPH(c) (isascii (c) && isprint (c) && !isspace (c))
  154. #endif
  155.  
  156. #define ISPRINT(c) (isascii (c) && isprint (c))
  157. #define ISDIGIT(c) (isascii (c) && isdigit (c))
  158. #define ISALNUM(c) (isascii (c) && isalnum (c))
  159. #define ISALPHA(c) (isascii (c) && isalpha (c))
  160. #define ISCNTRL(c) (isascii (c) && iscntrl (c))
  161. #define ISLOWER(c) (isascii (c) && islower (c))
  162. #define ISPUNCT(c) (isascii (c) && ispunct (c))
  163. #define ISSPACE(c) (isascii (c) && isspace (c))
  164. #define ISUPPER(c) (isascii (c) && isupper (c))
  165. #define ISXDIGIT(c) (isascii (c) && isxdigit (c))
  166.  
  167. #ifndef NULL
  168. #define NULL 0
  169. #endif
  170.  
  171. /* We remove any previous definition of `SIGN_EXTEND_CHAR',
  172.    since ours (we hope) works properly with all combinations of
  173.    machines, compilers, `char' and `unsigned char' argument types.
  174.    (Per Bothner suggested the basic approach.)  */
  175. #undef SIGN_EXTEND_CHAR
  176. #if __STDC__
  177. #define SIGN_EXTEND_CHAR(c) ((signed char) (c))
  178. #else  /* not __STDC__ */
  179. /* As in Harbison and Steele.  */
  180. #define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
  181. #endif
  182.  
  183. /* Should we use malloc or alloca?  If REGEX_MALLOC is not defined, we
  184.    use `alloca' instead of `malloc'.  This is because using malloc in
  185.    re_search* or re_match* could cause memory leaks when C-g is used in
  186.    Emacs; also, malloc is slower and causes storage fragmentation.  On
  187.    the other hand, malloc is more portable, and easier to debug.  
  188.    
  189.    Because we sometimes use alloca, some routines have to be macros,
  190.    not functions -- `alloca'-allocated space disappears at the end of the
  191.    function it is called in.  */
  192.  
  193. #ifdef REGEX_MALLOC
  194.  
  195. #define REGEX_ALLOCATE malloc
  196. #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
  197.  
  198. #else /* not REGEX_MALLOC  */
  199.  
  200. /* Emacs already defines alloca, sometimes.  */
  201. #ifndef alloca
  202.  
  203. /* Make alloca work the best possible way.  */
  204. #ifdef __GNUC__
  205. #define alloca __builtin_alloca
  206. #else /* not __GNUC__ */
  207. #if HAVE_ALLOCA_H
  208. #include <malloc.h>
  209. #else /* not __GNUC__ or HAVE_ALLOCA_H */
  210. #ifndef _AIX /* Already did AIX, up at the top.  */
  211. char *alloca ();
  212. #endif /* not _AIX */
  213. #endif /* not HAVE_ALLOCA_H */ 
  214. #endif /* not __GNUC__ */
  215.  
  216. #endif /* not alloca */
  217.  
  218. #define REGEX_ALLOCATE alloca
  219.  
  220. /* Assumes a `char *destination' variable.  */
  221. #define REGEX_REALLOCATE(source, osize, nsize)                \
  222.   (destination = (char *) alloca (nsize),                \
  223.    bcopy (source, destination, osize),                    \
  224.    destination)
  225.  
  226. #endif /* not REGEX_MALLOC */
  227.  
  228.  
  229. /* True if `size1' is non-NULL and PTR is pointing anywhere inside
  230.    `string1' or just past its end.  This works if PTR is NULL, which is
  231.    a good thing.  */
  232. #define FIRST_STRING_P(ptr)                     \
  233.   (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
  234.  
  235. /* (Re)Allocate N items of type T using malloc, or fail.  */
  236. #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
  237. #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
  238. #define RETALLOC_IF(addr, n, t) \
  239.   if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)
  240. #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
  241.  
  242. #define BYTEWIDTH 8 /* In bits.  */
  243.  
  244. #define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
  245.  
  246. #define MAX(a, b) ((a) > (b) ? (a) : (b))
  247. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  248.  
  249. typedef char boolean;
  250. #define false 0
  251. #define true 1
  252.  
  253. /* These are the command codes that appear in compiled regular
  254.    expressions.  Some opcodes are followed by argument bytes.  A
  255.    command code can specify any interpretation whatsoever for its
  256.    arguments.  Zero bytes may appear in the compiled regular expression.
  257.  
  258.    The value of `exactn' is needed in search.c (search_buffer) in Emacs.
  259.    So regex.h defines a symbol `RE_EXACTN_VALUE' to be 1; the value of
  260.    `exactn' we use here must also be 1.  */
  261.  
  262. typedef enum
  263. {
  264.   no_op = 0,
  265.  
  266.         /* Followed by one byte giving n, then by n literal bytes.  */
  267.   exactn = 1,
  268.  
  269.         /* Matches any (more or less) character.  */
  270.   anychar,
  271.  
  272.         /* Matches any one char belonging to specified set.  First
  273.            following byte is number of bitmap bytes.  Then come bytes
  274.            for a bitmap saying which chars are in.  Bits in each byte
  275.            are ordered low-bit-first.  A character is in the set if its
  276.            bit is 1.  A character too large to have a bit in the map is
  277.            automatically not in the set.  */
  278.   charset,
  279.  
  280.         /* Same parameters as charset, but match any character that is
  281.            not one of those specified.  */
  282.   charset_not,
  283.  
  284.         /* Start remembering the text that is matched, for storing in a
  285.            register.  Followed by one byte with the register number, in
  286.            the range 0 to one less than the pattern buffer's re_nsub
  287.            field.  Then followed by one byte with the number of groups
  288.            inner to this one.  (This last has to be part of the
  289.            start_memory only because we need it in the on_failure_jump
  290.            of re_match_2.)  */
  291.   start_memory,
  292.  
  293.         /* Stop remembering the text that is matched and store it in a
  294.            memory register.  Followed by one byte with the register
  295.            number, in the range 0 to one less than `re_nsub' in the
  296.            pattern buffer, and one byte with the number of inner groups,
  297.            just like `start_memory'.  (We need the number of inner
  298.            groups here because we don't have any easy way of finding the
  299.            corresponding start_memory when we're at a stop_memory.)  */
  300.   stop_memory,
  301.  
  302.         /* Match a duplicate of something remembered. Followed by one
  303.            byte containing the register number.  */
  304.   duplicate,
  305.  
  306.         /* Fail unless at beginning of line.  */
  307.   begline,
  308.  
  309.         /* Fail unless at end of line.  */
  310.   endline,
  311.  
  312.         /* Succeeds if at beginning of buffer (if emacs) or at beginning
  313.            of string to be matched (if not).  */
  314.   begbuf,
  315.  
  316.         /* Analogously, for end of buffer/string.  */
  317.   endbuf,
  318.  
  319.         /* Followed by two byte relative address to which to jump.  */
  320.   jump, 
  321.  
  322.     /* Same as jump, but marks the end of an alternative.  */
  323.   jump_past_alt,
  324.  
  325.         /* Followed by two-byte relative address of place to resume at
  326.            in case of failure.  */
  327.   on_failure_jump,
  328.     
  329.         /* Like on_failure_jump, but pushes a placeholder instead of the
  330.            current string position when executed.  */
  331.   on_failure_keep_string_jump,
  332.   
  333.         /* Throw away latest failure point and then jump to following
  334.            two-byte relative address.  */
  335.   pop_failure_jump,
  336.  
  337.         /* Change to pop_failure_jump if know won't have to backtrack to
  338.            match; otherwise change to jump.  This is used to jump
  339.            back to the beginning of a repeat.  If what follows this jump
  340.            clearly won't match what the repeat does, such that we can be
  341.            sure that there is no use backtracking out of repetitions
  342.            already matched, then we change it to a pop_failure_jump.
  343.            Followed by two-byte address.  */
  344.   maybe_pop_jump,
  345.  
  346.         /* Jump to following two-byte address, and push a dummy failure
  347.            point. This failure point will be thrown away if an attempt
  348.            is made to use it for a failure.  A `+' construct makes this
  349.            before the first repeat.  Also used as an intermediary kind
  350.            of jump when compiling an alternative.  */
  351.   dummy_failure_jump,
  352.  
  353.     /* Push a dummy failure point and continue.  Used at the end of
  354.        alternatives.  */
  355.   push_dummy_failure,
  356.  
  357.         /* Followed by two-byte relative address and two-byte number n.
  358.            After matching N times, jump to the address upon failure.  */
  359.   succeed_n,
  360.  
  361.         /* Followed by two-byte relative address, and two-byte number n.
  362.            Jump to the address N times, then fail.  */
  363.   jump_n,
  364.  
  365.         /* Set the following two-byte relative address to the
  366.            subsequent two-byte number.  The address *includes* the two
  367.            bytes of number.  */
  368.   set_number_at,
  369.  
  370.   wordchar,    /* Matches any word-constituent character.  */
  371.   notwordchar,    /* Matches any char that is not a word-constituent.  */
  372.  
  373.   wordbeg,    /* Succeeds if at word beginning.  */
  374.   wordend,    /* Succeeds if at word end.  */
  375.  
  376.   wordbound,    /* Succeeds if at a word boundary.  */
  377.   notwordbound    /* Succeeds if not at a word boundary.  */
  378.  
  379. #ifdef emacs
  380.   ,before_dot,    /* Succeeds if before point.  */
  381.   at_dot,    /* Succeeds if at point.  */
  382.   after_dot,    /* Succeeds if after point.  */
  383.  
  384.     /* Matches any character whose syntax is specified.  Followed by
  385.            a byte which contains a syntax code, e.g., Sword.  */
  386.   syntaxspec,
  387.  
  388.     /* Matches any character whose syntax is not that specified.  */
  389.   notsyntaxspec
  390. #endif /* emacs */
  391. } re_opcode_t;
  392.  
  393. /* Common operations on the compiled pattern.  */
  394.  
  395. /* Store NUMBER in two contiguous bytes starting at DESTINATION.  */
  396.  
  397. #define STORE_NUMBER(destination, number)                \
  398.   do {                                    \
  399.     (destination)[0] = (number) & 0377;                    \
  400.     (destination)[1] = (number) >> 8;                    \
  401.   } while (0)
  402.  
  403. /* Same as STORE_NUMBER, except increment DESTINATION to
  404.    the byte after where the number is stored.  Therefore, DESTINATION
  405.    must be an lvalue.  */
  406.  
  407. #define STORE_NUMBER_AND_INCR(destination, number)            \
  408.   do {                                    \
  409.     STORE_NUMBER (destination, number);                    \
  410.     (destination) += 2;                            \
  411.   } while (0)
  412.  
  413. /* Put into DESTINATION a number stored in two contiguous bytes starting
  414.    at SOURCE.  */
  415.  
  416. #define EXTRACT_NUMBER(destination, source)                \
  417.   do {                                    \
  418.     (destination) = *(source) & 0377;                    \
  419.     (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8;        \
  420.   } while (0)
  421.  
  422. #ifdef DEBUG
  423. static void
  424. extract_number (dest, source)
  425.     int *dest;
  426.     unsigned char *source;
  427. {
  428.   int temp = SIGN_EXTEND_CHAR (*(source + 1)); 
  429.   *dest = *source & 0377;
  430.   *dest += temp << 8;
  431. }
  432.  
  433. #ifndef EXTRACT_MACROS /* To debug the macros.  */
  434. #undef EXTRACT_NUMBER
  435. #define EXTRACT_NUMBER(dest, src) extract_number (&dest, src)
  436. #endif /* not EXTRACT_MACROS */
  437.  
  438. #endif /* DEBUG */
  439.  
  440. /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
  441.    SOURCE must be an lvalue.  */
  442.  
  443. #define EXTRACT_NUMBER_AND_INCR(destination, source)            \
  444.   do {                                    \
  445.     EXTRACT_NUMBER (destination, source);                \
  446.     (source) += 2;                             \
  447.   } while (0)
  448.  
  449. #ifdef DEBUG
  450. static void
  451. extract_number_and_incr (destination, source)
  452.     int *destination;
  453.     unsigned char **source;
  454.   extract_number (destination, *source);
  455.   *source += 2;
  456. }
  457.  
  458. #ifndef EXTRACT_MACROS
  459. #undef EXTRACT_NUMBER_AND_INCR
  460. #define EXTRACT_NUMBER_AND_INCR(dest, src) \
  461.   extract_number_and_incr (&dest, &src)
  462. #endif /* not EXTRACT_MACROS */
  463.  
  464. #endif /* DEBUG */
  465.  
  466. /* If DEBUG is defined, Regex prints many voluminous messages about what
  467.    it is doing (if the variable `debug' is nonzero).  If linked with the
  468.    main program in `iregex.c', you can enter patterns and strings
  469.    interactively.  And if linked with the main program in `main.c' and
  470.    the other test files, you can run the already-written tests.  */
  471.  
  472. #ifdef DEBUG
  473.  
  474. /* We use standard I/O for debugging.  */
  475. #include <stdio.h>
  476.  
  477. /* It is useful to test things that ``must'' be true when debugging.  */
  478. #include <assert.h>
  479.  
  480. static int debug = 0;
  481.  
  482. #define DEBUG_STATEMENT(e) e
  483. #define DEBUG_PRINT1(x) if (debug) printf (x)
  484. #define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
  485. #define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
  486. #define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
  487. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)                 \
  488.   if (debug) print_partial_compiled_pattern (s, e)
  489. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)            \
  490.   if (debug) print_double_string (w, s1, sz1, s2, sz2)
  491.  
  492.  
  493. extern void printchar ();
  494.  
  495. /* Print the fastmap in human-readable form.  */
  496.  
  497. void
  498. print_fastmap (fastmap)
  499.     char *fastmap;
  500. {
  501.   unsigned was_a_range = 0;
  502.   unsigned i = 0;  
  503.   
  504.   while (i < (1 << BYTEWIDTH))
  505.     {
  506.       if (fastmap[i++])
  507.     {
  508.       was_a_range = 0;
  509.           printchar (i - 1);
  510.           while (i < (1 << BYTEWIDTH)  &&  fastmap[i])
  511.             {
  512.               was_a_range = 1;
  513.               i++;
  514.             }
  515.       if (was_a_range)
  516.             {
  517.               printf ("-");
  518.               printchar (i - 1);
  519.             }
  520.         }
  521.     }
  522.   putchar ('\n'); 
  523. }
  524.  
  525.  
  526. /* Print a compiled pattern string in human-readable form, starting at
  527.    the START pointer into it and ending just before the pointer END.  */
  528.  
  529. void
  530. print_partial_compiled_pattern (start, end)
  531.     unsigned char *start;
  532.     unsigned char *end;
  533. {
  534.   int mcnt, mcnt2;
  535.   unsigned char *p = start;
  536.   unsigned char *pend = end;
  537.  
  538.   if (start == NULL)
  539.     {
  540.       printf ("(null)\n");
  541.       return;
  542.     }
  543.     
  544.   /* Loop over pattern commands.  */
  545.   while (p < pend)
  546.     {
  547.       printf ("%d:\t", p - start);
  548.  
  549.       switch ((re_opcode_t) *p++)
  550.     {
  551.         case no_op:
  552.           printf ("/no_op");
  553.           break;
  554.  
  555.     case exactn:
  556.       mcnt = *p++;
  557.           printf ("/exactn/%d", mcnt);
  558.           do
  559.         {
  560.               putchar ('/');
  561.           printchar (*p++);
  562.             }
  563.           while (--mcnt);
  564.           break;
  565.  
  566.     case start_memory:
  567.           mcnt = *p++;
  568.           printf ("/start_memory/%d/%d", mcnt, *p++);
  569.           break;
  570.  
  571.     case stop_memory:
  572.           mcnt = *p++;
  573.       printf ("/stop_memory/%d/%d", mcnt, *p++);
  574.           break;
  575.  
  576.     case duplicate:
  577.       printf ("/duplicate/%d", *p++);
  578.       break;
  579.  
  580.     case anychar:
  581.       printf ("/anychar");
  582.       break;
  583.  
  584.     case charset:
  585.         case charset_not:
  586.           {
  587.             register int c, last = -100;
  588.         register int in_range = 0;
  589.  
  590.         printf ("/charset [%s",
  591.                 (re_opcode_t) *(p - 1) == charset_not ? "^" : "");
  592.             
  593.             assert (p + *p < pend);
  594.  
  595.             for (c = 0; c < 256; c++)
  596.           if (c / 8 < *p
  597.           && (p[1 + (c/8)] & (1 << (c % 8))))
  598.         {
  599.           /* Are we starting a range?  */
  600.           if (last + 1 == c && ! in_range)
  601.             {
  602.               putchar ('-');
  603.               in_range = 1;
  604.             }
  605.           /* Have we broken a range?  */
  606.           else if (last + 1 != c && in_range)
  607.               {
  608.               printchar (last);
  609.               in_range = 0;
  610.             }
  611.                 
  612.           if (! in_range)
  613.             printchar (c);
  614.  
  615.           last = c;
  616.               }
  617.  
  618.         if (in_range)
  619.           printchar (last);
  620.  
  621.         putchar (']');
  622.  
  623.         p += 1 + *p;
  624.       }
  625.       break;
  626.  
  627.     case begline:
  628.       printf ("/begline");
  629.           break;
  630.  
  631.     case endline:
  632.           printf ("/endline");
  633.           break;
  634.  
  635.     case on_failure_jump:
  636.           extract_number_and_incr (&mcnt, &p);
  637.         printf ("/on_failure_jump to %d", p + mcnt - start);
  638.           break;
  639.  
  640.     case on_failure_keep_string_jump:
  641.           extract_number_and_incr (&mcnt, &p);
  642.         printf ("/on_failure_keep_string_jump to %d", p + mcnt - start);
  643.           break;
  644.  
  645.     case dummy_failure_jump:
  646.           extract_number_and_incr (&mcnt, &p);
  647.         printf ("/dummy_failure_jump to %d", p + mcnt - start);
  648.           break;
  649.  
  650.     case push_dummy_failure:
  651.           printf ("/push_dummy_failure");
  652.           break;
  653.           
  654.         case maybe_pop_jump:
  655.           extract_number_and_incr (&mcnt, &p);
  656.         printf ("/maybe_pop_jump to %d", p + mcnt - start);
  657.       break;
  658.  
  659.         case pop_failure_jump:
  660.       extract_number_and_incr (&mcnt, &p);
  661.         printf ("/pop_failure_jump to %d", p + mcnt - start);
  662.       break;          
  663.           
  664.         case jump_past_alt:
  665.       extract_number_and_incr (&mcnt, &p);
  666.         printf ("/jump_past_alt to %d", p + mcnt - start);
  667.       break;          
  668.           
  669.         case jump:
  670.       extract_number_and_incr (&mcnt, &p);
  671.         printf ("/jump to %d", p + mcnt - start);
  672.       break;
  673.  
  674.         case succeed_n: 
  675.           extract_number_and_incr (&mcnt, &p);
  676.           extract_number_and_incr (&mcnt2, &p);
  677.       printf ("/succeed_n to %d, %d times", p + mcnt - start, mcnt2);
  678.           break;
  679.         
  680.         case jump_n: 
  681.           extract_number_and_incr (&mcnt, &p);
  682.           extract_number_and_incr (&mcnt2, &p);
  683.       printf ("/jump_n to %d, %d times", p + mcnt - start, mcnt2);
  684.           break;
  685.         
  686.         case set_number_at: 
  687.           extract_number_and_incr (&mcnt, &p);
  688.           extract_number_and_incr (&mcnt2, &p);
  689.       printf ("/set_number_at location %d to %d", p + mcnt - start, mcnt2);
  690.           break;
  691.         
  692.         case wordbound:
  693.       printf ("/wordbound");
  694.       break;
  695.  
  696.     case notwordbound:
  697.       printf ("/notwordbound");
  698.           break;
  699.  
  700.     case wordbeg:
  701.       printf ("/wordbeg");
  702.       break;
  703.           
  704.     case wordend:
  705.       printf ("/wordend");
  706.           
  707. #ifdef emacs
  708.     case before_dot:
  709.       printf ("/before_dot");
  710.           break;
  711.  
  712.     case at_dot:
  713.       printf ("/at_dot");
  714.           break;
  715.  
  716.     case after_dot:
  717.       printf ("/after_dot");
  718.           break;
  719.  
  720.     case syntaxspec:
  721.           printf ("/syntaxspec");
  722.       mcnt = *p++;
  723.       printf ("/%d", mcnt);
  724.           break;
  725.       
  726.     case notsyntaxspec:
  727.           printf ("/notsyntaxspec");
  728.       mcnt = *p++;
  729.       printf ("/%d", mcnt);
  730.       break;
  731. #endif /* emacs */
  732.  
  733.     case wordchar:
  734.       printf ("/wordchar");
  735.           break;
  736.       
  737.     case notwordchar:
  738.       printf ("/notwordchar");
  739.           break;
  740.  
  741.     case begbuf:
  742.       printf ("/begbuf");
  743.           break;
  744.  
  745.     case endbuf:
  746.       printf ("/endbuf");
  747.           break;
  748.  
  749.         default:
  750.           printf ("?%d", *(p-1));
  751.     }
  752.  
  753.       putchar ('\n');
  754.     }
  755.  
  756.   printf ("%d:\tend of pattern.\n", p - start);
  757. }
  758.  
  759.  
  760. void
  761. print_compiled_pattern (bufp)
  762.     struct re_pattern_buffer *bufp;
  763. {
  764.   unsigned char *buffer = bufp->buffer;
  765.  
  766.   print_partial_compiled_pattern (buffer, buffer + bufp->used);
  767.   printf ("%d bytes used/%d bytes allocated.\n", bufp->used, bufp->allocated);
  768.  
  769.   if (bufp->fastmap_accurate && bufp->fastmap)
  770.     {
  771.       printf ("fastmap: ");
  772.       print_fastmap (bufp->fastmap);
  773.     }
  774.  
  775.   printf ("re_nsub: %d\t", bufp->re_nsub);
  776.   printf ("regs_alloc: %d\t", bufp->regs_allocated);
  777.   printf ("can_be_null: %d\t", bufp->can_be_null);
  778.   printf ("newline_anchor: %d\n", bufp->newline_anchor);
  779.   printf ("no_sub: %d\t", bufp->no_sub);
  780.   printf ("not_bol: %d\t", bufp->not_bol);
  781.   printf ("not_eol: %d\t", bufp->not_eol);
  782.   printf ("syntax: %d\n", bufp->syntax);
  783.   /* Perhaps we should print the translate table?  */
  784. }
  785.  
  786.  
  787. void
  788. print_double_string (where, string1, size1, string2, size2)
  789.     const char *where;
  790.     const char *string1;
  791.     const char *string2;
  792.     int size1;
  793.     int size2;
  794. {
  795.   unsigned this_char;
  796.   
  797.   if (where == NULL)
  798.     printf ("(null)");
  799.   else
  800.     {
  801.       if (FIRST_STRING_P (where))
  802.         {
  803.           for (this_char = where - string1; this_char < size1; this_char++)
  804.             printchar (string1[this_char]);
  805.  
  806.           where = string2;    
  807.         }
  808.  
  809.       for (this_char = where - string2; this_char < size2; this_char++)
  810.         printchar (string2[this_char]);
  811.     }
  812. }
  813.  
  814. #else /* not DEBUG */
  815.  
  816. #undef assert
  817. #define assert(e)
  818.  
  819. #define DEBUG_STATEMENT(e)
  820. #define DEBUG_PRINT1(x)
  821. #define DEBUG_PRINT2(x1, x2)
  822. #define DEBUG_PRINT3(x1, x2, x3)
  823. #define DEBUG_PRINT4(x1, x2, x3, x4)
  824. #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
  825. #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
  826.  
  827. #endif /* not DEBUG */
  828.  
  829. /* Set by `re_set_syntax' to the current regexp syntax to recognize.  Can
  830.    also be assigned to arbitrarily: each pattern buffer stores its own
  831.    syntax, so it can be changed between regex compilations.  */
  832. reg_syntax_t re_syntax_options = RE_SYNTAX_EMACS;
  833.  
  834.  
  835. /* Specify the precise syntax of regexps for compilation.  This provides
  836.    for compatibility for various utilities which historically have
  837.    different, incompatible syntaxes.
  838.  
  839.    The argument SYNTAX is a bit mask comprised of the various bits
  840.    defined in regex.h.  We return the old syntax.  */
  841.  
  842. reg_syntax_t
  843. re_set_syntax (syntax)
  844.     reg_syntax_t syntax;
  845. {
  846.   reg_syntax_t ret = re_syntax_options;
  847.   
  848.   re_syntax_options = syntax;
  849.   return ret;
  850. }
  851.  
  852. /* This table gives an error message for each of the error codes listed
  853.    in regex.h.  Obviously the order here has to be same as there.  */
  854.  
  855. static const char *re_error_msg[] =
  856.   { NULL,                    /* REG_NOERROR */
  857.     "No match",                    /* REG_NOMATCH */
  858.     "Invalid regular expression",        /* REG_BADPAT */
  859.     "Invalid collation character",        /* REG_ECOLLATE */
  860.     "Invalid character class name",        /* REG_ECTYPE */
  861.     "Trailing backslash",            /* REG_EESCAPE */
  862.     "Invalid back reference",            /* REG_ESUBREG */
  863.     "Unmatched [ or [^",            /* REG_EBRACK */
  864.     "Unmatched ( or \\(",            /* REG_EPAREN */
  865.     "Unmatched \\{",                /* REG_EBRACE */
  866.     "Invalid content of \\{\\}",        /* REG_BADBR */
  867.     "Invalid range end",            /* REG_ERANGE */
  868.     "Memory exhausted",                /* REG_ESPACE */
  869.     "Invalid preceding regular expression",    /* REG_BADRPT */
  870.     "Premature end of regular expression",    /* REG_EEND */
  871.     "Regular expression too big",        /* REG_ESIZE */
  872.     "Unmatched ) or \\)",            /* REG_ERPAREN */
  873.   };
  874.  
  875. /* Avoiding alloca during matching, to placate r_alloc.  */
  876.  
  877. /* Define MATCH_MAY_ALLOCATE if we need to make sure that the
  878.    searching and matching functions should not call alloca.  On some
  879.    systems, alloca is implemented in terms of malloc, and if we're
  880.    using the relocating allocator routines, then malloc could cause a
  881.    relocation, which might (if the strings being searched are in the
  882.    ralloc heap) shift the data out from underneath the regexp
  883.    routines.  */
  884.  
  885. /* Normally, this is fine.  */
  886. #define MATCH_MAY_ALLOCATE
  887.  
  888. /* But under some circumstances, it's not.  */
  889. #if defined (REL_ALLOC) && defined (C_ALLOCA)
  890. #undef MATCH_MAY_ALLOCATE
  891. #endif
  892.  
  893.  
  894. /* Failure stack declarations and macros; both re_compile_fastmap and
  895.    re_match_2 use a failure stack.  These have to be macros because of
  896.    REGEX_ALLOCATE.  */
  897.    
  898.  
  899. /* Number of failure points for which to initially allocate space
  900.    when matching.  If this number is exceeded, we allocate more
  901.    space, so it is not a hard limit.  */
  902. #ifndef INIT_FAILURE_ALLOC
  903. #define INIT_FAILURE_ALLOC 5
  904. #endif
  905.  
  906. /* Roughly the maximum number of failure points on the stack.  Would be
  907.    exactly that if always used MAX_FAILURE_SPACE each time we failed.
  908.    This is a variable only so users of regex can assign to it; we never
  909.    change it ourselves.  */
  910. int re_max_failures = 2000;
  911.  
  912. typedef const unsigned char *fail_stack_elt_t;
  913.  
  914. typedef struct
  915. {
  916.   fail_stack_elt_t *stack;
  917.   unsigned size;
  918.   unsigned avail;            /* Offset of next open position.  */
  919. } fail_stack_type;
  920.  
  921. #define FAIL_STACK_EMPTY()     (fail_stack.avail == 0)
  922. #define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
  923. #define FAIL_STACK_FULL()      (fail_stack.avail == fail_stack.size)
  924. #define FAIL_STACK_TOP()       (fail_stack.stack[fail_stack.avail])
  925.  
  926.  
  927. /* Initialize `fail_stack'.  Do `return -2' if the alloc fails.  */
  928.  
  929. #ifdef MATCH_MAY_ALLOCATE
  930. #define INIT_FAIL_STACK()                        \
  931.   do {                                    \
  932.     fail_stack.stack = (fail_stack_elt_t *)                \
  933.       REGEX_ALLOCATE (INIT_FAILURE_ALLOC * sizeof (fail_stack_elt_t));    \
  934.                                     \
  935.     if (fail_stack.stack == NULL)                    \
  936.       return -2;                            \
  937.                                     \
  938.     fail_stack.size = INIT_FAILURE_ALLOC;                \
  939.     fail_stack.avail = 0;                        \
  940.   } while (0)
  941. #else
  942. #define INIT_FAIL_STACK()                        \
  943.   do {                                    \
  944.     fail_stack.avail = 0;                        \
  945.   } while (0)
  946. #endif
  947.  
  948.  
  949. /* Double the size of FAIL_STACK, up to approximately `re_max_failures' items.
  950.  
  951.    Return 1 if succeeds, and 0 if either ran out of memory
  952.    allocating space for it or it was already too large.  
  953.    
  954.    REGEX_REALLOCATE requires `destination' be declared.   */
  955.  
  956. #define DOUBLE_FAIL_STACK(fail_stack)                    \
  957.   ((fail_stack).size > re_max_failures * MAX_FAILURE_ITEMS        \
  958.    ? 0                                    \
  959.    : ((fail_stack).stack = (fail_stack_elt_t *)                \
  960.         REGEX_REALLOCATE ((fail_stack).stack,                 \
  961.           (fail_stack).size * sizeof (fail_stack_elt_t),        \
  962.           ((fail_stack).size << 1) * sizeof (fail_stack_elt_t)),    \
  963.                                     \
  964.       (fail_stack).stack == NULL                    \
  965.       ? 0                                \
  966.       : ((fail_stack).size <<= 1,                     \
  967.          1)))
  968.  
  969.  
  970. /* Push PATTERN_OP on FAIL_STACK. 
  971.  
  972.    Return 1 if was able to do so and 0 if ran out of memory allocating
  973.    space to do so.  */
  974. #define PUSH_PATTERN_OP(pattern_op, fail_stack)                \
  975.   ((FAIL_STACK_FULL ()                            \
  976.     && !DOUBLE_FAIL_STACK (fail_stack))                    \
  977.     ? 0                                    \
  978.     : ((fail_stack).stack[(fail_stack).avail++] = pattern_op,        \
  979.        1))
  980.  
  981. /* This pushes an item onto the failure stack.  Must be a four-byte
  982.    value.  Assumes the variable `fail_stack'.  Probably should only
  983.    be called from within `PUSH_FAILURE_POINT'.  */
  984. #define PUSH_FAILURE_ITEM(item)                        \
  985.   fail_stack.stack[fail_stack.avail++] = (fail_stack_elt_t) item
  986.  
  987. /* The complement operation.  Assumes `fail_stack' is nonempty.  */
  988. #define POP_FAILURE_ITEM() fail_stack.stack[--fail_stack.avail]
  989.  
  990. /* Used to omit pushing failure point id's when we're not debugging.  */
  991. #ifdef DEBUG
  992. #define DEBUG_PUSH PUSH_FAILURE_ITEM
  993. #define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_ITEM ()
  994. #else
  995. #define DEBUG_PUSH(item)
  996. #define DEBUG_POP(item_addr)
  997. #endif
  998.  
  999.  
  1000. /* Push the information about the state we will need
  1001.    if we ever fail back to it.  
  1002.    
  1003.    Requires variables fail_stack, regstart, regend, reg_info, and
  1004.    num_regs be declared.  DOUBLE_FAIL_STACK requires `destination' be
  1005.    declared.
  1006.    
  1007.    Does `return FAILURE_CODE' if runs out of memory.  */
  1008.  
  1009. #define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code)    \
  1010.   do {                                    \
  1011.     char *destination;                            \
  1012.     /* Must be int, so when we don't save any registers, the arithmetic    \
  1013.        of 0 + -1 isn't done as unsigned.  */                \
  1014.     int this_reg;                            \
  1015.                                         \
  1016.     DEBUG_STATEMENT (failure_id++);                    \
  1017.     DEBUG_STATEMENT (nfailure_points_pushed++);                \
  1018.     DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id);        \
  1019.     DEBUG_PRINT2 ("  Before push, next avail: %d\n", (fail_stack).avail);\
  1020.     DEBUG_PRINT2 ("                     size: %d\n", (fail_stack).size);\
  1021.                                     \
  1022.     DEBUG_PRINT2 ("  slots needed: %d\n", NUM_FAILURE_ITEMS);        \
  1023.     DEBUG_PRINT2 ("     available: %d\n", REMAINING_AVAIL_SLOTS);    \
  1024.                                     \
  1025.     /* Ensure we have enough space allocated for what we will push.  */    \
  1026.     while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS)            \
  1027.       {                                    \
  1028.         if (!DOUBLE_FAIL_STACK (fail_stack))            \
  1029.           return failure_code;                        \
  1030.                                     \
  1031.         DEBUG_PRINT2 ("\n  Doubled stack; size now: %d\n",        \
  1032.                (fail_stack).size);                \
  1033.         DEBUG_PRINT2 ("  slots available: %d\n", REMAINING_AVAIL_SLOTS);\
  1034.       }                                    \
  1035.                                     \
  1036.     /* Push the info, starting with the registers.  */            \
  1037.     DEBUG_PRINT1 ("\n");                        \
  1038.                                     \
  1039.     for (this_reg = lowest_active_reg; (unsigned) this_reg <= highest_active_reg;    \
  1040.          this_reg++)                            \
  1041.       {                                    \
  1042.     DEBUG_PRINT2 ("  Pushing reg: %d\n", this_reg);            \
  1043.         DEBUG_STATEMENT (num_regs_pushed++);                \
  1044.                                     \
  1045.     DEBUG_PRINT2 ("    start: 0x%x\n", regstart[this_reg]);        \
  1046.         PUSH_FAILURE_ITEM (regstart[this_reg]);                \
  1047.                                                                         \
  1048.     DEBUG_PRINT2 ("    end: 0x%x\n", regend[this_reg]);        \
  1049.         PUSH_FAILURE_ITEM (regend[this_reg]);                \
  1050.                                     \
  1051.     DEBUG_PRINT2 ("    info: 0x%x\n      ", reg_info[this_reg]);    \
  1052.         DEBUG_PRINT2 (" match_null=%d",                    \
  1053.                       REG_MATCH_NULL_STRING_P (reg_info[this_reg]));    \
  1054.         DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg]));    \
  1055.         DEBUG_PRINT2 (" matched_something=%d",                \
  1056.                       MATCHED_SOMETHING (reg_info[this_reg]));        \
  1057.         DEBUG_PRINT2 (" ever_matched=%d",                \
  1058.                       EVER_MATCHED_SOMETHING (reg_info[this_reg]));    \
  1059.     DEBUG_PRINT1 ("\n");                        \
  1060.         PUSH_FAILURE_ITEM (reg_info[this_reg].word);            \
  1061.       }                                    \
  1062.                                     \
  1063.     DEBUG_PRINT2 ("  Pushing  low active reg: %d\n", lowest_active_reg);\
  1064.     PUSH_FAILURE_ITEM (lowest_active_reg);                \
  1065.                                     \
  1066.     DEBUG_PRINT2 ("  Pushing high active reg: %d\n", highest_active_reg);\
  1067.     PUSH_FAILURE_ITEM (highest_active_reg);                \
  1068.                                     \
  1069.     DEBUG_PRINT2 ("  Pushing pattern 0x%x: ", pattern_place);        \
  1070.     DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend);        \
  1071.     PUSH_FAILURE_ITEM (pattern_place);                    \
  1072.                                     \
  1073.     DEBUG_PRINT2 ("  Pushing string 0x%x: `", string_place);        \
  1074.     DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2,   \
  1075.                  size2);                \
  1076.     DEBUG_PRINT1 ("'\n");                        \
  1077.     PUSH_FAILURE_ITEM (string_place);                    \
  1078.                                     \
  1079.     DEBUG_PRINT2 ("  Pushing failure id: %u\n", failure_id);        \
  1080.     DEBUG_PUSH (failure_id);                        \
  1081.   } while (0)
  1082.  
  1083. /* This is the number of items that are pushed and popped on the stack
  1084.    for each register.  */
  1085. #define NUM_REG_ITEMS  3
  1086.  
  1087. /* Individual items aside from the registers.  */
  1088. #ifdef DEBUG
  1089. #define NUM_NONREG_ITEMS 5 /* Includes failure point id.  */
  1090. #else
  1091. #define NUM_NONREG_ITEMS 4
  1092. #endif
  1093.  
  1094. /* We push at most this many items on the stack.  */
  1095. #define MAX_FAILURE_ITEMS ((num_regs - 1) * NUM_REG_ITEMS + NUM_NONREG_ITEMS)
  1096.  
  1097. /* We actually push this many items.  */
  1098. #define NUM_FAILURE_ITEMS                        \
  1099.   ((highest_active_reg - lowest_active_reg + 1) * NUM_REG_ITEMS     \
  1100.     + NUM_NONREG_ITEMS)
  1101.  
  1102. /* How many items can still be added to the stack without overflowing it.  */
  1103. #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
  1104.  
  1105.  
  1106. /* Pops what PUSH_FAIL_STACK pushes.
  1107.  
  1108.    We restore into the parameters, all of which should be lvalues:
  1109.      STR -- the saved data position.
  1110.      PAT -- the saved pattern position.
  1111.      LOW_REG, HIGH_REG -- the highest and lowest active registers.
  1112.      REGSTART, REGEND -- arrays of string positions.
  1113.      REG_INFO -- array of information about each subexpression.
  1114.    
  1115.    Also assumes the variables `fail_stack' and (if debugging), `bufp',
  1116.    `pend', `string1', `size1', `string2', and `size2'.  */
  1117.  
  1118. #define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
  1119. {                                    \
  1120.   DEBUG_STATEMENT (fail_stack_elt_t failure_id;)            \
  1121.   int this_reg;                                \
  1122.   const unsigned char *string_temp;                    \
  1123.                                     \
  1124.   assert (!FAIL_STACK_EMPTY ());                    \
  1125.                                     \
  1126.   /* Remove failure points and point to how many regs pushed.  */    \
  1127.   DEBUG_PRINT1 ("POP_FAILURE_POINT:\n");                \
  1128.   DEBUG_PRINT2 ("  Before pop, next avail: %d\n", fail_stack.avail);    \
  1129.   DEBUG_PRINT2 ("                    size: %d\n", fail_stack.size);    \
  1130.                                     \
  1131.   assert (fail_stack.avail >= NUM_NONREG_ITEMS);            \
  1132.                                     \
  1133.   DEBUG_POP (&failure_id);                        \
  1134.   DEBUG_PRINT2 ("  Popping failure id: %u\n", failure_id);        \
  1135.                                     \
  1136.   /* If the saved string location is NULL, it came from an        \
  1137.      on_failure_keep_string_jump opcode, and we want to throw away the    \
  1138.      saved NULL, thus retaining our current position in the string.  */    \
  1139.   string_temp = POP_FAILURE_ITEM ();                    \
  1140.   if (string_temp != NULL)                        \
  1141.     str = (const char *) string_temp;                    \
  1142.                                     \
  1143.   DEBUG_PRINT2 ("  Popping string 0x%x: `", str);            \
  1144.   DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2);    \
  1145.   DEBUG_PRINT1 ("'\n");                            \
  1146.                                     \
  1147.   pat = (unsigned char *) POP_FAILURE_ITEM ();                \
  1148.   DEBUG_PRINT2 ("  Popping pattern 0x%x: ", pat);            \
  1149.   DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend);            \
  1150.                                     \
  1151.   /* Restore register info.  */                        \
  1152.   high_reg = (unsigned) POP_FAILURE_ITEM ();                \
  1153.   DEBUG_PRINT2 ("  Popping high active reg: %d\n", high_reg);        \
  1154.                                     \
  1155.   low_reg = (unsigned) POP_FAILURE_ITEM ();                \
  1156.   DEBUG_PRINT2 ("  Popping  low active reg: %d\n", low_reg);        \
  1157.                                     \
  1158.   for (this_reg = high_reg; (unsigned) this_reg >= low_reg; this_reg--)        \
  1159.     {                                    \
  1160.       DEBUG_PRINT2 ("    Popping reg: %d\n", this_reg);            \
  1161.                                     \
  1162.       reg_info[this_reg].word = POP_FAILURE_ITEM ();            \
  1163.       DEBUG_PRINT2 ("      info: 0x%x\n", reg_info[this_reg]);        \
  1164.                                     \
  1165.       regend[this_reg] = (const char *) POP_FAILURE_ITEM ();        \
  1166.       DEBUG_PRINT2 ("      end: 0x%x\n", regend[this_reg]);        \
  1167.                                     \
  1168.       regstart[this_reg] = (const char *) POP_FAILURE_ITEM ();        \
  1169.       DEBUG_PRINT2 ("      start: 0x%x\n", regstart[this_reg]);        \
  1170.     }                                    \
  1171.                                     \
  1172.   DEBUG_STATEMENT (nfailure_points_popped++);                \
  1173. } /* POP_FAILURE_POINT */
  1174.  
  1175.  
  1176.  
  1177. /* Structure for per-register (a.k.a. per-group) information.
  1178.    This must not be longer than one word, because we push this value
  1179.    onto the failure stack.  Other register information, such as the
  1180.    starting and ending positions (which are addresses), and the list of
  1181.    inner groups (which is a bits list) are maintained in separate
  1182.    variables.  
  1183.    
  1184.    We are making a (strictly speaking) nonportable assumption here: that
  1185.    the compiler will pack our bit fields into something that fits into
  1186.    the type of `word', i.e., is something that fits into one item on the
  1187.    failure stack.  */
  1188. typedef union
  1189. {
  1190.   fail_stack_elt_t word;
  1191.   struct
  1192.   {
  1193.       /* This field is one if this group can match the empty string,
  1194.          zero if not.  If not yet determined,  `MATCH_NULL_UNSET_VALUE'.  */
  1195. #define MATCH_NULL_UNSET_VALUE 3
  1196.     unsigned match_null_string_p : 2;
  1197.     unsigned is_active : 1;
  1198.     unsigned matched_something : 1;
  1199.     unsigned ever_matched_something : 1;
  1200.   } bits;
  1201. } register_info_type;
  1202.  
  1203. #define REG_MATCH_NULL_STRING_P(R)  ((R).bits.match_null_string_p)
  1204. #define IS_ACTIVE(R)  ((R).bits.is_active)
  1205. #define MATCHED_SOMETHING(R)  ((R).bits.matched_something)
  1206. #define EVER_MATCHED_SOMETHING(R)  ((R).bits.ever_matched_something)
  1207.  
  1208.  
  1209. /* Call this when have matched a real character; it sets `matched' flags
  1210.    for the subexpressions which we are currently inside.  Also records
  1211.    that those subexprs have matched.  */
  1212. #define SET_REGS_MATCHED()                        \
  1213.   do                                    \
  1214.     {                                    \
  1215.       unsigned r;                            \
  1216.       for (r = lowest_active_reg; r <= highest_active_reg; r++)        \
  1217.         {                                \
  1218.           MATCHED_SOMETHING (reg_info[r])                \
  1219.             = EVER_MATCHED_SOMETHING (reg_info[r])            \
  1220.             = 1;                            \
  1221.         }                                \
  1222.     }                                    \
  1223.   while (0)
  1224.  
  1225.  
  1226. /* Registers are set to a sentinel when they haven't yet matched.  */
  1227. #define REG_UNSET_VALUE ((char *) -1)
  1228. #define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
  1229.  
  1230.  
  1231.  
  1232. /* How do we implement a missing MATCH_MAY_ALLOCATE?
  1233.    We make the fail stack a global thing, and then grow it to
  1234.    re_max_failures when we compile.  */
  1235. #ifndef MATCH_MAY_ALLOCATE
  1236. static fail_stack_type fail_stack;
  1237.  
  1238. static const char **     regstart, **     regend;
  1239. static const char ** old_regstart, ** old_regend;
  1240. static const char **best_regstart, **best_regend;
  1241. static register_info_type *reg_info; 
  1242. static const char **reg_dummy;
  1243. static register_info_type *reg_info_dummy;
  1244. #endif
  1245.  
  1246.  
  1247. /* Subroutine declarations and macros for regex_compile.  */
  1248.  
  1249. static void store_op1 (), store_op2 ();
  1250. static void insert_op1 (), insert_op2 ();
  1251. static boolean at_begline_loc_p (), at_endline_loc_p ();
  1252. static boolean group_in_compile_stack ();
  1253. static reg_errcode_t compile_range ();
  1254.  
  1255. /* Fetch the next character in the uncompiled pattern---translating it 
  1256.    if necessary.  Also cast from a signed character in the constant
  1257.    string passed to us by the user to an unsigned char that we can use
  1258.    as an array index (in, e.g., `translate').  */
  1259. #define PATFETCH(c)                            \
  1260.   do {if (p == pend) return REG_EEND;                    \
  1261.     c = (unsigned char) *p++;                        \
  1262.     if (translate) c = translate[c];                     \
  1263.   } while (0)
  1264.  
  1265. /* Fetch the next character in the uncompiled pattern, with no
  1266.    translation.  */
  1267. #define PATFETCH_RAW(c)                            \
  1268.   do {if (p == pend) return REG_EEND;                    \
  1269.     c = (unsigned char) *p++;                         \
  1270.   } while (0)
  1271.  
  1272. /* Go backwards one character in the pattern.  */
  1273. #define PATUNFETCH p--
  1274.  
  1275.  
  1276. /* If `translate' is non-null, return translate[D], else just D.  We
  1277.    cast the subscript to translate because some data is declared as
  1278.    `char *', to avoid warnings when a string constant is passed.  But
  1279.    when we use a character as a subscript we must make it unsigned.  */
  1280. #define TRANSLATE(d) (translate ? translate[(unsigned char) (d)] : (d))
  1281.  
  1282.  
  1283. /* Macros for outputting the compiled pattern into `buffer'.  */
  1284.  
  1285. /* If the buffer isn't allocated when it comes in, use this.  */
  1286. #define INIT_BUF_SIZE  32
  1287.  
  1288. /* Make sure we have at least N more bytes of space in buffer.  */
  1289. #define GET_BUFFER_SPACE(n)                        \
  1290.     while (b - bufp->buffer + (unsigned)(n) > bufp->allocated)            \
  1291.       EXTEND_BUFFER ()
  1292.  
  1293. /* Make sure we have one more byte of buffer space and then add C to it.  */
  1294. #define BUF_PUSH(c)                            \
  1295.   do {                                    \
  1296.     GET_BUFFER_SPACE (1);                        \
  1297.     *b++ = (unsigned char) (c);                        \
  1298.   } while (0)
  1299.  
  1300.  
  1301. /* Ensure we have two more bytes of buffer space and then append C1 and C2.  */
  1302. #define BUF_PUSH_2(c1, c2)                        \
  1303.   do {                                    \
  1304.     GET_BUFFER_SPACE (2);                        \
  1305.     *b++ = (unsigned char) (c1);                    \
  1306.     *b++ = (unsigned char) (c2);                    \
  1307.   } while (0)
  1308.  
  1309.  
  1310. /* As with BUF_PUSH_2, except for three bytes.  */
  1311. #define BUF_PUSH_3(c1, c2, c3)                        \
  1312.   do {                                    \
  1313.     GET_BUFFER_SPACE (3);                        \
  1314.     *b++ = (unsigned char) (c1);                    \
  1315.     *b++ = (unsigned char) (c2);                    \
  1316.     *b++ = (unsigned char) (c3);                    \
  1317.   } while (0)
  1318.  
  1319.  
  1320. /* Store a jump with opcode OP at LOC to location TO.  We store a
  1321.    relative address offset by the three bytes the jump itself occupies.  */
  1322. #define STORE_JUMP(op, loc, to) \
  1323.   store_op1 (op, loc, (to) - (loc) - 3)
  1324.  
  1325. /* Likewise, for a two-argument jump.  */
  1326. #define STORE_JUMP2(op, loc, to, arg) \
  1327.   store_op2 (op, loc, (to) - (loc) - 3, arg)
  1328.  
  1329. /* Like `STORE_JUMP', but for inserting.  Assume `b' is the buffer end.  */
  1330. #define INSERT_JUMP(op, loc, to) \
  1331.   insert_op1 (op, loc, (to) - (loc) - 3, b)
  1332.  
  1333. /* Like `STORE_JUMP2', but for inserting.  Assume `b' is the buffer end.  */
  1334. #define INSERT_JUMP2(op, loc, to, arg) \
  1335.   insert_op2 (op, loc, (to) - (loc) - 3, arg, b)
  1336.  
  1337.  
  1338. /* This is not an arbitrary limit: the arguments which represent offsets
  1339.    into the pattern are two bytes long.  So if 2^16 bytes turns out to
  1340.    be too small, many things would have to change.  */
  1341. #define MAX_BUF_SIZE (1L << 16)
  1342.  
  1343.  
  1344. /* Extend the buffer by twice its current size via realloc and
  1345.    reset the pointers that pointed into the old block to point to the
  1346.    correct places in the new one.  If extending the buffer results in it
  1347.    being larger than MAX_BUF_SIZE, then flag memory exhausted.  */
  1348. #define EXTEND_BUFFER()                            \
  1349.   do {                                     \
  1350.     unsigned char *old_buffer = bufp->buffer;                \
  1351.     if (bufp->allocated == MAX_BUF_SIZE)                 \
  1352.       return REG_ESIZE;                            \
  1353.     bufp->allocated <<= 1;                        \
  1354.     if (bufp->allocated > MAX_BUF_SIZE)                    \
  1355.       bufp->allocated = MAX_BUF_SIZE;                     \
  1356.     bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->allocated);\
  1357.     if (bufp->buffer == NULL)                        \
  1358.       return REG_ESPACE;                        \
  1359.     /* If the buffer moved, move all the pointers into it.  */        \
  1360.     if (old_buffer != bufp->buffer)                    \
  1361.       {                                    \
  1362.         b = (b - old_buffer) + bufp->buffer;                \
  1363.         begalt = (begalt - old_buffer) + bufp->buffer;            \
  1364.         if (fixup_alt_jump)                        \
  1365.           fixup_alt_jump = (fixup_alt_jump - old_buffer) + bufp->buffer;\
  1366.         if (laststart)                            \
  1367.           laststart = (laststart - old_buffer) + bufp->buffer;        \
  1368.         if (pending_exact)                        \
  1369.           pending_exact = (pending_exact - old_buffer) + bufp->buffer;    \
  1370.       }                                    \
  1371.   } while (0)
  1372.  
  1373.  
  1374. /* Since we have one byte reserved for the register number argument to
  1375.    {start,stop}_memory, the maximum number of groups we can report
  1376.    things about is what fits in that byte.  */
  1377. #define MAX_REGNUM 255
  1378.  
  1379. /* But patterns can have more than `MAX_REGNUM' registers.  We just
  1380.    ignore the excess.  */
  1381. typedef unsigned regnum_t;
  1382.  
  1383.  
  1384. /* Macros for the compile stack.  */
  1385.  
  1386. /* Since offsets can go either forwards or backwards, this type needs to
  1387.    be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1.  */
  1388. typedef int pattern_offset_t;
  1389.  
  1390. typedef struct
  1391. {
  1392.   pattern_offset_t begalt_offset;
  1393.   pattern_offset_t fixup_alt_jump;
  1394.   pattern_offset_t inner_group_offset;
  1395.   pattern_offset_t laststart_offset;  
  1396.   regnum_t regnum;
  1397. } compile_stack_elt_t;
  1398.  
  1399.  
  1400. typedef struct
  1401. {
  1402.   compile_stack_elt_t *stack;
  1403.   unsigned size;
  1404.   unsigned avail;            /* Offset of next open position.  */
  1405. } compile_stack_type;
  1406.  
  1407.  
  1408. #define INIT_COMPILE_STACK_SIZE 32
  1409.  
  1410. #define COMPILE_STACK_EMPTY  (compile_stack.avail == 0)
  1411. #define COMPILE_STACK_FULL  (compile_stack.avail == compile_stack.size)
  1412.  
  1413. /* The next available element.  */
  1414. #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
  1415.  
  1416.  
  1417. /* Set the bit for character C in a list.  */
  1418. #define SET_LIST_BIT(c)                               \
  1419.   (b[((unsigned char) (c)) / BYTEWIDTH]               \
  1420.    |= 1 << (((unsigned char) c) % BYTEWIDTH))
  1421.  
  1422.  
  1423. /* Get the next unsigned number in the uncompiled pattern.  */
  1424. #define GET_UNSIGNED_NUMBER(num)                     \
  1425.   { if (p != pend)                            \
  1426.      {                                    \
  1427.        PATFETCH (c);                             \
  1428.        while (ISDIGIT (c))                         \
  1429.          {                                 \
  1430.            if (num < 0)                            \
  1431.               num = 0;                            \
  1432.            num = num * 10 + c - '0';                     \
  1433.            if (p == pend)                         \
  1434.               break;                             \
  1435.            PATFETCH (c);                        \
  1436.          }                                 \
  1437.        }                                 \
  1438.     }        
  1439.  
  1440. #define CHAR_CLASS_MAX_LENGTH  6 /* Namely, `xdigit'.  */
  1441.  
  1442. #define IS_CHAR_CLASS(string)                        \
  1443.    (STREQ (string, "alpha") || STREQ (string, "upper")            \
  1444.     || STREQ (string, "lower") || STREQ (string, "digit")        \
  1445.     || STREQ (string, "alnum") || STREQ (string, "xdigit")        \
  1446.     || STREQ (string, "space") || STREQ (string, "print")        \
  1447.     || STREQ (string, "punct") || STREQ (string, "graph")        \
  1448.     || STREQ (string, "cntrl") || STREQ (string, "blank"))
  1449.  
  1450. /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
  1451.    Returns one of error codes defined in `regex.h', or zero for success.
  1452.  
  1453.    Assumes the `allocated' (and perhaps `buffer') and `translate'
  1454.    fields are set in BUFP on entry.
  1455.  
  1456.    If it succeeds, results are put in BUFP (if it returns an error, the
  1457.    contents of BUFP are undefined):
  1458.      `buffer' is the compiled pattern;
  1459.      `syntax' is set to SYNTAX;
  1460.      `used' is set to the length of the compiled pattern;
  1461.      `fastmap_accurate' is zero;
  1462.      `re_nsub' is the number of subexpressions in PATTERN;
  1463.      `not_bol' and `not_eol' are zero;
  1464.    
  1465.    The `fastmap' and `newline_anchor' fields are neither
  1466.    examined nor set.  */
  1467.  
  1468. static reg_errcode_t
  1469. regex_compile (pattern, size, syntax, bufp)
  1470.      const char *pattern;
  1471.      int size;
  1472.      reg_syntax_t syntax;
  1473.      struct re_pattern_buffer *bufp;
  1474. {
  1475.   /* We fetch characters from PATTERN here.  Even though PATTERN is
  1476.      `char *' (i.e., signed), we declare these variables as unsigned, so
  1477.      they can be reliably used as array indices.  */
  1478.   register unsigned char c, c1;
  1479.   
  1480.   /* A random tempory spot in PATTERN.  */
  1481.   const char *p1;
  1482.  
  1483.   /* Points to the end of the buffer, where we should append.  */
  1484.   register unsigned char *b;
  1485.   
  1486.   /* Keeps track of unclosed groups.  */
  1487.   compile_stack_type compile_stack;
  1488.  
  1489.   /* Points to the current (ending) position in the pattern.  */
  1490.   const char *p = pattern;
  1491.   const char *pend = pattern + size;
  1492.   
  1493.   /* How to translate the characters in the pattern.  */
  1494.   char *translate = bufp->translate;
  1495.  
  1496.   /* Address of the count-byte of the most recently inserted `exactn'
  1497.      command.  This makes it possible to tell if a new exact-match
  1498.      character can be added to that command or if the character requires
  1499.      a new `exactn' command.  */
  1500.   unsigned char *pending_exact = 0;
  1501.  
  1502.   /* Address of start of the most recently finished expression.
  1503.      This tells, e.g., postfix * where to find the start of its
  1504.      operand.  Reset at the beginning of groups and alternatives.  */
  1505.   unsigned char *laststart = 0;
  1506.  
  1507.   /* Address of beginning of regexp, or inside of last group.  */
  1508.   unsigned char *begalt;
  1509.  
  1510.   /* Place in the uncompiled pattern (i.e., the {) to
  1511.      which to go back if the interval is invalid.  */
  1512.   const char *beg_interval;
  1513.                 
  1514.   /* Address of the place where a forward jump should go to the end of
  1515.      the containing expression.  Each alternative of an `or' -- except the
  1516.      last -- ends with a forward jump of this sort.  */
  1517.   unsigned char *fixup_alt_jump = 0;
  1518.  
  1519.   /* Counts open-groups as they are encountered.  Remembered for the
  1520.      matching close-group on the compile stack, so the same register
  1521.      number is put in the stop_memory as the start_memory.  */
  1522.   regnum_t regnum = 0;
  1523.  
  1524. #ifdef DEBUG
  1525.   DEBUG_PRINT1 ("\nCompiling pattern: ");
  1526.   if (debug)
  1527.     {
  1528.       unsigned debug_count;
  1529.       
  1530.       for (debug_count = 0; debug_count < size; debug_count++)
  1531.         printchar (pattern[debug_count]);
  1532.       putchar ('\n');
  1533.     }
  1534. #endif /* DEBUG */
  1535.  
  1536.   /* Initialize the compile stack.  */
  1537.   compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
  1538.   if (compile_stack.stack == NULL)
  1539.     return REG_ESPACE;
  1540.  
  1541.   compile_stack.size = INIT_COMPILE_STACK_SIZE;
  1542.   compile_stack.avail = 0;
  1543.  
  1544.   /* Initialize the pattern buffer.  */
  1545.   bufp->syntax = syntax;
  1546.   bufp->fastmap_accurate = 0;
  1547.   bufp->not_bol = bufp->not_eol = 0;
  1548.  
  1549.   /* Set `used' to zero, so that if we return an error, the pattern
  1550.      printer (for debugging) will think there's no pattern.  We reset it
  1551.      at the end.  */
  1552.   bufp->used = 0;
  1553.   
  1554.   /* Always count groups, whether or not bufp->no_sub is set.  */
  1555.   bufp->re_nsub = 0;                
  1556.  
  1557. #if !defined (emacs) && !defined (SYNTAX_TABLE)
  1558.   /* Initialize the syntax table.  */
  1559.    init_syntax_once ();
  1560. #endif
  1561.  
  1562.   if (bufp->allocated == 0)
  1563.     {
  1564.       if (bufp->buffer)
  1565.     { /* If zero allocated, but buffer is non-null, try to realloc
  1566.              enough space.  This loses if buffer's address is bogus, but
  1567.              that is the user's responsibility.  */
  1568.           RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char);
  1569.         }
  1570.       else
  1571.         { /* Caller did not allocate a buffer.  Do it for them.  */
  1572.           bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char);
  1573.         }
  1574.       if (!bufp->buffer) return REG_ESPACE;
  1575.  
  1576.       bufp->allocated = INIT_BUF_SIZE;
  1577.     }
  1578.  
  1579.   begalt = b = bufp->buffer;
  1580.  
  1581.   /* Loop through the uncompiled pattern until we're at the end.  */
  1582.   while (p != pend)
  1583.     {
  1584.       PATFETCH (c);
  1585.  
  1586.       switch (c)
  1587.         {
  1588.         case '^':
  1589.           {
  1590.             if (   /* If at start of pattern, it's an operator.  */
  1591.                    p == pattern + 1
  1592.                    /* If context independent, it's an operator.  */
  1593.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  1594.                    /* Otherwise, depends on what's come before.  */
  1595.                 || at_begline_loc_p (pattern, p, syntax))
  1596.               BUF_PUSH ( begline);
  1597.             else
  1598.               goto normal_char;
  1599.           }
  1600.           break;
  1601.  
  1602.  
  1603.         case '$':
  1604.           {
  1605.             if (   /* If at end of pattern, it's an operator.  */
  1606.                    p == pend 
  1607.                    /* If context independent, it's an operator.  */
  1608.                 || syntax & RE_CONTEXT_INDEP_ANCHORS
  1609.                    /* Otherwise, depends on what's next.  */
  1610.                 || at_endline_loc_p (p, pend, syntax))
  1611.                BUF_PUSH (endline);
  1612.              else
  1613.                goto normal_char;
  1614.            }
  1615.            break;
  1616.  
  1617.  
  1618.     case '+':
  1619.         case '?':
  1620.           if ((syntax & RE_BK_PLUS_QM)
  1621.               || (syntax & RE_LIMITED_OPS))
  1622.             goto normal_char;
  1623.         handle_plus:
  1624.         case '*':
  1625.           /* If there is no previous pattern... */
  1626.           if (!laststart)
  1627.             {
  1628.               if (syntax & RE_CONTEXT_INVALID_OPS)
  1629.                 return REG_BADRPT;
  1630.               else if (!(syntax & RE_CONTEXT_INDEP_OPS))
  1631.                 goto normal_char;
  1632.             }
  1633.  
  1634.           {
  1635.             /* Are we optimizing this jump?  */
  1636.             boolean keep_string_p = false;
  1637.             
  1638.             /* 1 means zero (many) matches is allowed.  */
  1639.             char zero_times_ok = 0, many_times_ok = 0;
  1640.  
  1641.             /* If there is a sequence of repetition chars, collapse it
  1642.                down to just one (the right one).  We can't combine
  1643.                interval operators with these because of, e.g., `a{2}*',
  1644.                which should only match an even number of `a's.  */
  1645.  
  1646.             for (;;)
  1647.               {
  1648.                 zero_times_ok |= c != '+';
  1649.                 many_times_ok |= c != '?';
  1650.  
  1651.                 if (p == pend)
  1652.                   break;
  1653.  
  1654.                 PATFETCH (c);
  1655.  
  1656.                 if (c == '*'
  1657.                     || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
  1658.                   ;
  1659.  
  1660.                 else if (syntax & RE_BK_PLUS_QM  &&  c == '\\')
  1661.                   {
  1662.                     if (p == pend) return REG_EESCAPE;
  1663.  
  1664.                     PATFETCH (c1);
  1665.                     if (!(c1 == '+' || c1 == '?'))
  1666.                       {
  1667.                         PATUNFETCH;
  1668.                         PATUNFETCH;
  1669.                         break;
  1670.                       }
  1671.  
  1672.                     c = c1;
  1673.                   }
  1674.                 else
  1675.                   {
  1676.                     PATUNFETCH;
  1677.                     break;
  1678.                   }
  1679.  
  1680.                 /* If we get here, we found another repeat character.  */
  1681.                }
  1682.  
  1683.             /* Star, etc. applied to an empty pattern is equivalent
  1684.                to an empty pattern.  */
  1685.             if (!laststart)  
  1686.               break;
  1687.  
  1688.             /* Now we know whether or not zero matches is allowed
  1689.                and also whether or not two or more matches is allowed.  */
  1690.             if (many_times_ok)
  1691.               { /* More than one repetition is allowed, so put in at the
  1692.                    end a backward relative jump from `b' to before the next
  1693.                    jump we're going to put in below (which jumps from
  1694.                    laststart to after this jump).  
  1695.  
  1696.                    But if we are at the `*' in the exact sequence `.*\n',
  1697.                    insert an unconditional jump backwards to the .,
  1698.                    instead of the beginning of the loop.  This way we only
  1699.                    push a failure point once, instead of every time
  1700.                    through the loop.  */
  1701.                 assert (p - 1 > pattern);
  1702.  
  1703.                 /* Allocate the space for the jump.  */
  1704.                 GET_BUFFER_SPACE ((unsigned) 3);
  1705.  
  1706.                 /* We know we are not at the first character of the pattern,
  1707.                    because laststart was nonzero.  And we've already
  1708.                    incremented `p', by the way, to be the character after
  1709.                    the `*'.  Do we have to do something analogous here
  1710.                    for null bytes, because of RE_DOT_NOT_NULL?  */
  1711.                 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
  1712.             && zero_times_ok
  1713.                     && p < pend && TRANSLATE (*p) == TRANSLATE ('\n')
  1714.                     && !(syntax & RE_DOT_NEWLINE))
  1715.                   { /* We have .*\n.  */
  1716.                     STORE_JUMP (jump, b, laststart);
  1717.                     keep_string_p = true;
  1718.                   }
  1719.                 else
  1720.                   /* Anything else.  */
  1721.                   STORE_JUMP (maybe_pop_jump, b, laststart - 3);
  1722.  
  1723.                 /* We've added more stuff to the buffer.  */
  1724.                 b += 3;
  1725.               }
  1726.  
  1727.             /* On failure, jump from laststart to b + 3, which will be the
  1728.                end of the buffer after this jump is inserted.  */
  1729.             GET_BUFFER_SPACE ((unsigned) 3);
  1730.             INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
  1731.                                        : on_failure_jump,
  1732.                          laststart, b + 3);
  1733.             pending_exact = 0;
  1734.             b += 3;
  1735.  
  1736.             if (!zero_times_ok)
  1737.               {
  1738.                 /* At least one repetition is required, so insert a
  1739.                    `dummy_failure_jump' before the initial
  1740.                    `on_failure_jump' instruction of the loop. This
  1741.                    effects a skip over that instruction the first time
  1742.                    we hit that loop.  */
  1743.                 GET_BUFFER_SPACE ((unsigned)3);
  1744.                 INSERT_JUMP (dummy_failure_jump, laststart, laststart + 6);
  1745.                 b += 3;
  1746.               }
  1747.             }
  1748.       break;
  1749.  
  1750.  
  1751.     case '.':
  1752.           laststart = b;
  1753.           BUF_PUSH (anychar);
  1754.           break;
  1755.  
  1756.  
  1757.         case '[':
  1758.           {
  1759.             boolean had_char_class = false;
  1760.  
  1761.             if (p == pend) return REG_EBRACK;
  1762.  
  1763.             /* Ensure that we have enough space to push a charset: the
  1764.                opcode, the length count, and the bitset; 34 bytes in all.  */
  1765.         GET_BUFFER_SPACE ((unsigned) 34);
  1766.  
  1767.             laststart = b;
  1768.  
  1769.             /* We test `*p == '^' twice, instead of using an if
  1770.                statement, so we only need one BUF_PUSH.  */
  1771.             BUF_PUSH (*p == '^' ? charset_not : charset); 
  1772.             if (*p == '^')
  1773.               p++;
  1774.  
  1775.             /* Remember the first position in the bracket expression.  */
  1776.             p1 = p;
  1777.  
  1778.             /* Push the number of bytes in the bitmap.  */
  1779.             BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
  1780.  
  1781.             /* Clear the whole map.  */
  1782.             bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
  1783.  
  1784.             /* charset_not matches newline according to a syntax bit.  */
  1785.             if ((re_opcode_t) b[-2] == charset_not
  1786.                 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
  1787.               SET_LIST_BIT ('\n');
  1788.  
  1789.             /* Read in characters and ranges, setting map bits.  */
  1790.             for (;;)
  1791.               {
  1792.                 if (p == pend) return REG_EBRACK;
  1793.  
  1794.                 PATFETCH (c);
  1795.  
  1796.                 /* \ might escape characters inside [...] and [^...].  */
  1797.                 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
  1798.                   {
  1799.                     if (p == pend) return REG_EESCAPE;
  1800.  
  1801.                     PATFETCH (c1);
  1802.                     SET_LIST_BIT (c1);
  1803.                     continue;
  1804.                   }
  1805.  
  1806.                 /* Could be the end of the bracket expression.  If it's
  1807.                    not (i.e., when the bracket expression is `[]' so
  1808.                    far), the ']' character bit gets set way below.  */
  1809.                 if (c == ']' && p != p1 + 1)
  1810.                   break;
  1811.  
  1812.                 /* Look ahead to see if it's a range when the last thing
  1813.                    was a character class.  */
  1814.                 if (had_char_class && c == '-' && *p != ']')
  1815.                   return REG_ERANGE;
  1816.  
  1817.                 /* Look ahead to see if it's a range when the last thing
  1818.                    was a character: if this is a hyphen not at the
  1819.                    beginning or the end of a list, then it's the range
  1820.                    operator.  */
  1821.                 if (c == '-' 
  1822.                     && !(p - 2 >= pattern && p[-2] == '[') 
  1823.                     && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
  1824.                     && *p != ']')
  1825.                   {
  1826.                     reg_errcode_t ret
  1827.                       = compile_range (&p, pend, translate, syntax, b);
  1828.                     if (ret != REG_NOERROR) return ret;
  1829.                   }
  1830.  
  1831.                 else if (p[0] == '-' && p[1] != ']')
  1832.                   { /* This handles ranges made up of characters only.  */
  1833.                     reg_errcode_t ret;
  1834.  
  1835.             /* Move past the `-'.  */
  1836.                     PATFETCH (c1);
  1837.                     
  1838.                     ret = compile_range (&p, pend, translate, syntax, b);
  1839.                     if (ret != REG_NOERROR) return ret;
  1840.                   }
  1841.  
  1842.                 /* See if we're at the beginning of a possible character
  1843.                    class.  */
  1844.  
  1845.                 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
  1846.                   { /* Leave room for the null.  */
  1847.                     char str[CHAR_CLASS_MAX_LENGTH + 1];
  1848.  
  1849.                     PATFETCH (c);
  1850.                     c1 = 0;
  1851.  
  1852.                     /* If pattern is `[[:'.  */
  1853.                     if (p == pend) return REG_EBRACK;
  1854.  
  1855.                     for (;;)
  1856.                       {
  1857.                         PATFETCH (c);
  1858.                         if (c == ':' || c == ']' || p == pend
  1859.                             || c1 == CHAR_CLASS_MAX_LENGTH)
  1860.                           break;
  1861.                         str[c1++] = c;
  1862.                       }
  1863.                     str[c1] = '\0';
  1864.  
  1865.                     /* If isn't a word bracketed by `[:' and:`]':
  1866.                        undo the ending character, the letters, and leave 
  1867.                        the leading `:' and `[' (but set bits for them).  */
  1868.                     if (c == ':' && *p == ']')
  1869.                       {
  1870.                         int ch;
  1871.                         boolean is_alnum = STREQ (str, "alnum");
  1872.                         boolean is_alpha = STREQ (str, "alpha");
  1873.                         boolean is_blank = STREQ (str, "blank");
  1874.                         boolean is_cntrl = STREQ (str, "cntrl");
  1875.                         boolean is_digit = STREQ (str, "digit");
  1876.                         boolean is_graph = STREQ (str, "graph");
  1877.                         boolean is_lower = STREQ (str, "lower");
  1878.                         boolean is_print = STREQ (str, "print");
  1879.                         boolean is_punct = STREQ (str, "punct");
  1880.                         boolean is_space = STREQ (str, "space");
  1881.                         boolean is_upper = STREQ (str, "upper");
  1882.                         boolean is_xdigit = STREQ (str, "xdigit");
  1883.                         
  1884.                         if (!IS_CHAR_CLASS (str)) return REG_ECTYPE;
  1885.  
  1886.                         /* Throw away the ] at the end of the character
  1887.                            class.  */
  1888.                         PATFETCH (c);                    
  1889.  
  1890.                         if (p == pend) return REG_EBRACK;
  1891.  
  1892.                         for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
  1893.                           {
  1894.                             if (   (is_alnum  && ISALNUM (ch))
  1895.                                 || (is_alpha  && ISALPHA (ch))
  1896.                                 || (is_blank  && ISBLANK (ch))
  1897.                                 || (is_cntrl  && ISCNTRL (ch))
  1898.                                 || (is_digit  && ISDIGIT (ch))
  1899.                                 || (is_graph  && ISGRAPH (ch))
  1900.                                 || (is_lower  && ISLOWER (ch))
  1901.                                 || (is_print  && ISPRINT (ch))
  1902.                                 || (is_punct  && ISPUNCT (ch))
  1903.                                 || (is_space  && ISSPACE (ch))
  1904.                                 || (is_upper  && ISUPPER (ch))
  1905.                                 || (is_xdigit && ISXDIGIT (ch)))
  1906.                             SET_LIST_BIT (ch);
  1907.                           }
  1908.                         had_char_class = true;
  1909.                       }
  1910.                     else
  1911.                       {
  1912.                         c1++;
  1913.                         while (c1--)    
  1914.                           PATUNFETCH;
  1915.                         SET_LIST_BIT ('[');
  1916.                         SET_LIST_BIT (':');
  1917.                         had_char_class = false;
  1918.                       }
  1919.                   }
  1920.                 else
  1921.                   {
  1922.                     had_char_class = false;
  1923.                     SET_LIST_BIT (c);
  1924.                   }
  1925.               }
  1926.  
  1927.             /* Discard any (non)matching list bytes that are all 0 at the
  1928.                end of the map.  Decrease the map-length byte too.  */
  1929.             while ((int) b[-1] > 0 && b[b[-1] - 1] == 0) 
  1930.               b[-1]--; 
  1931.             b += b[-1];
  1932.           }
  1933.           break;
  1934.  
  1935.  
  1936.     case '(':
  1937.           if (syntax & RE_NO_BK_PARENS)
  1938.             goto handle_open;
  1939.           else
  1940.             goto normal_char;
  1941.  
  1942.  
  1943.         case ')':
  1944.           if (syntax & RE_NO_BK_PARENS)
  1945.             goto handle_close;
  1946.           else
  1947.             goto normal_char;
  1948.  
  1949.  
  1950.         case '\n':
  1951.           if (syntax & RE_NEWLINE_ALT)
  1952.             goto handle_alt;
  1953.           else
  1954.             goto normal_char;
  1955.  
  1956.  
  1957.     case '|':
  1958.           if (syntax & RE_NO_BK_VBAR)
  1959.             goto handle_alt;
  1960.           else
  1961.             goto normal_char;
  1962.  
  1963.  
  1964.         case '{':
  1965.            if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
  1966.              goto handle_interval;
  1967.            else
  1968.              goto normal_char;
  1969.  
  1970.  
  1971.         case '\\':
  1972.           if (p == pend) return REG_EESCAPE;
  1973.  
  1974.           /* Do not translate the character after the \, so that we can
  1975.              distinguish, e.g., \B from \b, even if we normally would
  1976.              translate, e.g., B to b.  */
  1977.           PATFETCH_RAW (c);
  1978.  
  1979.           switch (c)
  1980.             {
  1981.             case '(':
  1982.               if (syntax & RE_NO_BK_PARENS)
  1983.                 goto normal_backslash;
  1984.  
  1985.             handle_open:
  1986.               bufp->re_nsub++;
  1987.               regnum++;
  1988.  
  1989.               if (COMPILE_STACK_FULL)
  1990.                 { 
  1991.                   RETALLOC (compile_stack.stack, compile_stack.size << 1,
  1992.                             compile_stack_elt_t);
  1993.                   if (compile_stack.stack == NULL) return REG_ESPACE;
  1994.  
  1995.                   compile_stack.size <<= 1;
  1996.                 }
  1997.  
  1998.               /* These are the values to restore when we hit end of this
  1999.                  group.  They are all relative offsets, so that if the
  2000.                  whole pattern moves because of realloc, they will still
  2001.                  be valid.  */
  2002.               COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;
  2003.               COMPILE_STACK_TOP.fixup_alt_jump 
  2004.                 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;
  2005.               COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;
  2006.               COMPILE_STACK_TOP.regnum = regnum;
  2007.  
  2008.               /* We will eventually replace the 0 with the number of
  2009.                  groups inner to this one.  But do not push a
  2010.                  start_memory for groups beyond the last one we can
  2011.                  represent in the compiled pattern.  */
  2012.               if (regnum <= MAX_REGNUM)
  2013.                 {
  2014.                   COMPILE_STACK_TOP.inner_group_offset = b - bufp->buffer + 2;
  2015.                   BUF_PUSH_3 (start_memory, regnum, 0);
  2016.                 }
  2017.                 
  2018.               compile_stack.avail++;
  2019.  
  2020.               fixup_alt_jump = 0;
  2021.               laststart = 0;
  2022.               begalt = b;
  2023.           /* If we've reached MAX_REGNUM groups, then this open
  2024.          won't actually generate any code, so we'll have to
  2025.          clear pending_exact explicitly.  */
  2026.           pending_exact = 0;
  2027.               break;
  2028.  
  2029.  
  2030.             case ')':
  2031.               if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
  2032.  
  2033.               if (COMPILE_STACK_EMPTY)
  2034.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  2035.                   goto normal_backslash;
  2036.                 else
  2037.                   return REG_ERPAREN;
  2038.  
  2039.             handle_close:
  2040.               if (fixup_alt_jump)
  2041.                 { /* Push a dummy failure point at the end of the
  2042.                      alternative for a possible future
  2043.                      `pop_failure_jump' to pop.  See comments at
  2044.                      `push_dummy_failure' in `re_match_2'.  */
  2045.                   BUF_PUSH (push_dummy_failure);
  2046.                   
  2047.                   /* We allocated space for this jump when we assigned
  2048.                      to `fixup_alt_jump', in the `handle_alt' case below.  */
  2049.                   STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
  2050.                 }
  2051.  
  2052.               /* See similar code for backslashed left paren above.  */
  2053.               if (COMPILE_STACK_EMPTY)
  2054.                 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
  2055.                   goto normal_char;
  2056.                 else
  2057.                   return REG_ERPAREN;
  2058.  
  2059.               /* Since we just checked for an empty stack above, this
  2060.                  ``can't happen''.  */
  2061.               assert (compile_stack.avail != 0);
  2062.               {
  2063.                 /* We don't just want to restore into `regnum', because
  2064.                    later groups should continue to be numbered higher,
  2065.                    as in `(ab)c(de)' -- the second group is #2.  */
  2066.                 regnum_t this_group_regnum;
  2067.  
  2068.                 compile_stack.avail--;        
  2069.                 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset;
  2070.                 fixup_alt_jump
  2071.                   = COMPILE_STACK_TOP.fixup_alt_jump
  2072.                     ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1 
  2073.                     : 0;
  2074.                 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset;
  2075.                 this_group_regnum = COMPILE_STACK_TOP.regnum;
  2076.         /* If we've reached MAX_REGNUM groups, then this open
  2077.            won't actually generate any code, so we'll have to
  2078.            clear pending_exact explicitly.  */
  2079.         pending_exact = 0;
  2080.  
  2081.                 /* We're at the end of the group, so now we know how many
  2082.                    groups were inside this one.  */
  2083.                 if (this_group_regnum <= MAX_REGNUM)
  2084.                   {
  2085.                     unsigned char *inner_group_loc
  2086.                       = bufp->buffer + COMPILE_STACK_TOP.inner_group_offset;
  2087.                     
  2088.                     *inner_group_loc = regnum - this_group_regnum;
  2089.                     BUF_PUSH_3 (stop_memory, this_group_regnum,
  2090.                                 regnum - this_group_regnum);
  2091.                   }
  2092.               }
  2093.               break;
  2094.  
  2095.  
  2096.             case '|':                    /* `\|'.  */
  2097.               if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
  2098.                 goto normal_backslash;
  2099.             handle_alt:
  2100.               if (syntax & RE_LIMITED_OPS)
  2101.                 goto normal_char;
  2102.  
  2103.               /* Insert before the previous alternative a jump which
  2104.                  jumps to this alternative if the former fails.  */
  2105.               GET_BUFFER_SPACE (3);
  2106.               INSERT_JUMP (on_failure_jump, begalt, b + 6);
  2107.               pending_exact = 0;
  2108.               b += 3;
  2109.  
  2110.               /* The alternative before this one has a jump after it
  2111.                  which gets executed if it gets matched.  Adjust that
  2112.                  jump so it will jump to this alternative's analogous
  2113.                  jump (put in below, which in turn will jump to the next
  2114.                  (if any) alternative's such jump, etc.).  The last such
  2115.                  jump jumps to the correct final destination.  A picture:
  2116.                           _____ _____ 
  2117.                           |   | |   |   
  2118.                           |   v |   v 
  2119.                          a | b   | c   
  2120.  
  2121.                  If we are at `b', then fixup_alt_jump right now points to a
  2122.                  three-byte space after `a'.  We'll put in the jump, set
  2123.                  fixup_alt_jump to right after `b', and leave behind three
  2124.                  bytes which we'll fill in when we get to after `c'.  */
  2125.  
  2126.               if (fixup_alt_jump)
  2127.                 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  2128.  
  2129.               /* Mark and leave space for a jump after this alternative,
  2130.                  to be filled in later either by next alternative or
  2131.                  when know we're at the end of a series of alternatives.  */
  2132.               fixup_alt_jump = b;
  2133.               GET_BUFFER_SPACE (3);
  2134.               b += 3;
  2135.  
  2136.               laststart = 0;
  2137.               begalt = b;
  2138.               break;
  2139.  
  2140.  
  2141.             case '{': 
  2142.               /* If \{ is a literal.  */
  2143.               if (!(syntax & RE_INTERVALS)
  2144.                      /* If we're at `\{' and it's not the open-interval 
  2145.                         operator.  */
  2146.                   || ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
  2147.                   || (p - 2 == pattern  &&  p == pend))
  2148.                 goto normal_backslash;
  2149.  
  2150.             handle_interval:
  2151.               {
  2152.                 /* If got here, then the syntax allows intervals.  */
  2153.  
  2154.                 /* At least (most) this many matches must be made.  */
  2155.                 int lower_bound = -1, upper_bound = -1;
  2156.  
  2157.                 beg_interval = p - 1;
  2158.  
  2159.                 if (p == pend)
  2160.                   {
  2161.                     if (syntax & RE_NO_BK_BRACES)
  2162.                       goto unfetch_interval;
  2163.                     else
  2164.                       return REG_EBRACE;
  2165.                   }
  2166.  
  2167.                 GET_UNSIGNED_NUMBER (lower_bound);
  2168.  
  2169.                 if (c == ',')
  2170.                   {
  2171.                     GET_UNSIGNED_NUMBER (upper_bound);
  2172.                     if (upper_bound < 0) upper_bound = RE_DUP_MAX;
  2173.                   }
  2174.                 else
  2175.                   /* Interval such as `{1}' => match exactly once. */
  2176.                   upper_bound = lower_bound;
  2177.  
  2178.                 if (lower_bound < 0 || upper_bound > RE_DUP_MAX
  2179.                     || lower_bound > upper_bound)
  2180.                   {
  2181.                     if (syntax & RE_NO_BK_BRACES)
  2182.                       goto unfetch_interval;
  2183.                     else 
  2184.                       return REG_BADBR;
  2185.                   }
  2186.  
  2187.                 if (!(syntax & RE_NO_BK_BRACES)) 
  2188.                   {
  2189.                     if (c != '\\') return REG_EBRACE;
  2190.  
  2191.                     PATFETCH (c);
  2192.                   }
  2193.  
  2194.                 if (c != '}')
  2195.                   {
  2196.                     if (syntax & RE_NO_BK_BRACES)
  2197.                       goto unfetch_interval;
  2198.                     else 
  2199.                       return REG_BADBR;
  2200.                   }
  2201.  
  2202.                 /* We just parsed a valid interval.  */
  2203.  
  2204.                 /* If it's invalid to have no preceding re.  */
  2205.                 if (!laststart)
  2206.                   {
  2207.                     if (syntax & RE_CONTEXT_INVALID_OPS)
  2208.                       return REG_BADRPT;
  2209.                     else if (syntax & RE_CONTEXT_INDEP_OPS)
  2210.                       laststart = b;
  2211.                     else
  2212.                       goto unfetch_interval;
  2213.                   }
  2214.  
  2215.                 /* If the upper bound is zero, don't want to succeed at
  2216.                    all; jump from `laststart' to `b + 3', which will be
  2217.                    the end of the buffer after we insert the jump.  */
  2218.                  if (upper_bound == 0)
  2219.                    {
  2220.                      GET_BUFFER_SPACE (3);
  2221.                      INSERT_JUMP (jump, laststart, b + 3);
  2222.                      b += 3;
  2223.                    }
  2224.  
  2225.                  /* Otherwise, we have a nontrivial interval.  When
  2226.                     we're all done, the pattern will look like:
  2227.                       set_number_at <jump count> <upper bound>
  2228.                       set_number_at <succeed_n count> <lower bound>
  2229.                       succeed_n <after jump addr> <succed_n count>
  2230.                       <body of loop>
  2231.                       jump_n <succeed_n addr> <jump count>
  2232.                     (The upper bound and `jump_n' are omitted if
  2233.                     `upper_bound' is 1, though.)  */
  2234.                  else 
  2235.                    { /* If the upper bound is > 1, we need to insert
  2236.                         more at the end of the loop.  */
  2237.                      unsigned nbytes = 10 + (upper_bound > 1) * 10;
  2238.  
  2239.                      GET_BUFFER_SPACE (nbytes);
  2240.  
  2241.                      /* Initialize lower bound of the `succeed_n', even
  2242.                         though it will be set during matching by its
  2243.                         attendant `set_number_at' (inserted next),
  2244.                         because `re_compile_fastmap' needs to know.
  2245.                         Jump to the `jump_n' we might insert below.  */
  2246.                      INSERT_JUMP2 (succeed_n, laststart,
  2247.                                    b + 5 + (upper_bound > 1) * 5,
  2248.                                    lower_bound);
  2249.                      b += 5;
  2250.  
  2251.                      /* Code to initialize the lower bound.  Insert 
  2252.                         before the `succeed_n'.  The `5' is the last two
  2253.                         bytes of this `set_number_at', plus 3 bytes of
  2254.                         the following `succeed_n'.  */
  2255.                      insert_op2 (set_number_at, laststart, 5, lower_bound, b);
  2256.                      b += 5;
  2257.  
  2258.                      if (upper_bound > 1)
  2259.                        { /* More than one repetition is allowed, so
  2260.                             append a backward jump to the `succeed_n'
  2261.                             that starts this interval.
  2262.                             
  2263.                             When we've reached this during matching,
  2264.                             we'll have matched the interval once, so
  2265.                             jump back only `upper_bound - 1' times.  */
  2266.                          STORE_JUMP2 (jump_n, b, laststart + 5,
  2267.                                       upper_bound - 1);
  2268.                          b += 5;
  2269.  
  2270.                          /* The location we want to set is the second
  2271.                             parameter of the `jump_n'; that is `b-2' as
  2272.                             an absolute address.  `laststart' will be
  2273.                             the `set_number_at' we're about to insert;
  2274.                             `laststart+3' the number to set, the source
  2275.                             for the relative address.  But we are
  2276.                             inserting into the middle of the pattern --
  2277.                             so everything is getting moved up by 5.
  2278.                             Conclusion: (b - 2) - (laststart + 3) + 5,
  2279.                             i.e., b - laststart.
  2280.                             
  2281.                             We insert this at the beginning of the loop
  2282.                             so that if we fail during matching, we'll
  2283.                             reinitialize the bounds.  */
  2284.                          insert_op2 (set_number_at, laststart, b - laststart,
  2285.                                      upper_bound - 1, b);
  2286.                          b += 5;
  2287.                        }
  2288.                    }
  2289.                 pending_exact = 0;
  2290.                 beg_interval = NULL;
  2291.               }
  2292.               break;
  2293.  
  2294.             unfetch_interval:
  2295.               /* If an invalid interval, match the characters as literals.  */
  2296.                assert (beg_interval);
  2297.                p = beg_interval;
  2298.                beg_interval = NULL;
  2299.  
  2300.                /* normal_char and normal_backslash need `c'.  */
  2301.                PATFETCH (c);    
  2302.  
  2303.                if (!(syntax & RE_NO_BK_BRACES))
  2304.                  {
  2305.                    if (p > pattern  &&  p[-1] == '\\')
  2306.                      goto normal_backslash;
  2307.                  }
  2308.                goto normal_char;
  2309.  
  2310. #ifdef emacs
  2311.             /* There is no way to specify the before_dot and after_dot
  2312.                operators.  rms says this is ok.  --karl  */
  2313.             case '=':
  2314.               BUF_PUSH (at_dot);
  2315.               break;
  2316.  
  2317.             case 's':    
  2318.               laststart = b;
  2319.               PATFETCH (c);
  2320.               BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
  2321.               break;
  2322.  
  2323.             case 'S':
  2324.               laststart = b;
  2325.               PATFETCH (c);
  2326.               BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
  2327.               break;
  2328. #endif /* emacs */
  2329.  
  2330.  
  2331.             case 'w':
  2332.               laststart = b;
  2333.               BUF_PUSH (wordchar);
  2334.               break;
  2335.  
  2336.  
  2337.             case 'W':
  2338.               laststart = b;
  2339.               BUF_PUSH (notwordchar);
  2340.               break;
  2341.  
  2342.  
  2343.             case '<':
  2344.               BUF_PUSH (wordbeg);
  2345.               break;
  2346.  
  2347.             case '>':
  2348.               BUF_PUSH (wordend);
  2349.               break;
  2350.  
  2351.             case 'b':
  2352.               BUF_PUSH (wordbound);
  2353.               break;
  2354.  
  2355.             case 'B':
  2356.               BUF_PUSH (notwordbound);
  2357.               break;
  2358.  
  2359.             case '`':
  2360.               BUF_PUSH (begbuf);
  2361.               break;
  2362.  
  2363.             case '\'':
  2364.               BUF_PUSH (endbuf);
  2365.               break;
  2366.  
  2367.             case '1': case '2': case '3': case '4': case '5':
  2368.             case '6': case '7': case '8': case '9':
  2369.               if (syntax & RE_NO_BK_REFS)
  2370.                 goto normal_char;
  2371.  
  2372.               c1 = c - '0';
  2373.  
  2374.               if (c1 > regnum)
  2375.                 return REG_ESUBREG;
  2376.  
  2377.               /* Can't back reference to a subexpression if inside of it.  */
  2378.               if (group_in_compile_stack (compile_stack, c1))
  2379.                 goto normal_char;
  2380.  
  2381.               laststart = b;
  2382.               BUF_PUSH_2 (duplicate, c1);
  2383.               break;
  2384.  
  2385.  
  2386.             case '+':
  2387.             case '?':
  2388.               if (syntax & RE_BK_PLUS_QM)
  2389.                 goto handle_plus;
  2390.               else
  2391.                 goto normal_backslash;
  2392.  
  2393.             default:
  2394.             normal_backslash:
  2395.               /* You might think it would be useful for \ to mean
  2396.                  not to translate; but if we don't translate it
  2397.                  it will never match anything.  */
  2398.               c = TRANSLATE (c);
  2399.               goto normal_char;
  2400.             }
  2401.           break;
  2402.  
  2403.  
  2404.     default:
  2405.         /* Expects the character in `c'.  */
  2406.     normal_char:
  2407.           /* If no exactn currently being built.  */
  2408.           if (!pending_exact 
  2409.  
  2410.               /* If last exactn not at current position.  */
  2411.               || pending_exact + *pending_exact + 1 != b
  2412.               
  2413.               /* We have only one byte following the exactn for the count.  */
  2414.           || *pending_exact == (1 << BYTEWIDTH) - 1
  2415.  
  2416.               /* If followed by a repetition operator.  */
  2417.               || *p == '*' || *p == '^'
  2418.           || ((syntax & RE_BK_PLUS_QM)
  2419.           ? *p == '\\' && (p[1] == '+' || p[1] == '?')
  2420.           : (*p == '+' || *p == '?'))
  2421.           || ((syntax & RE_INTERVALS)
  2422.                   && ((syntax & RE_NO_BK_BRACES)
  2423.               ? *p == '{'
  2424.                       : (p[0] == '\\' && p[1] == '{'))))
  2425.         {
  2426.           /* Start building a new exactn.  */
  2427.               
  2428.               laststart = b;
  2429.  
  2430.           BUF_PUSH_2 (exactn, 0);
  2431.           pending_exact = b - 1;
  2432.             }
  2433.             
  2434.       BUF_PUSH (c);
  2435.           (*pending_exact)++;
  2436.       break;
  2437.         } /* switch (c) */
  2438.     } /* while p != pend */
  2439.  
  2440.   
  2441.   /* Through the pattern now.  */
  2442.   
  2443.   if (fixup_alt_jump)
  2444.     STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
  2445.  
  2446.   if (!COMPILE_STACK_EMPTY) 
  2447.     return REG_EPAREN;
  2448.  
  2449.   free (compile_stack.stack);
  2450.  
  2451.   /* We have succeeded; set the length of the buffer.  */
  2452.   bufp->used = b - bufp->buffer;
  2453.  
  2454. #ifdef DEBUG
  2455.   if (debug)
  2456.     {
  2457.       DEBUG_PRINT1 ("\nCompiled pattern: \n");
  2458.       print_compiled_pattern (bufp);
  2459.     }
  2460. #endif /* DEBUG */
  2461.  
  2462. #ifndef MATCH_MAY_ALLOCATE
  2463.   /* Initialize the failure stack to the largest possible stack.  This
  2464.      isn't necessary unless we're trying to avoid calling alloca in
  2465.      the search and match routines.  */
  2466.   {
  2467.     int num_regs = bufp->re_nsub + 1;
  2468.  
  2469.     /* Since DOUBLE_FAIL_STACK refuses to double only if the current size
  2470.        is strictly greater than re_max_failures, the largest possible stack
  2471.        is 2 * re_max_failures failure points.  */
  2472.     fail_stack.size = (2 * re_max_failures * MAX_FAILURE_ITEMS);
  2473.     if (fail_stack.stack)
  2474.       fail_stack.stack =
  2475.     (fail_stack_elt_t *) realloc (fail_stack.stack,
  2476.                       (fail_stack.size
  2477.                        * sizeof (fail_stack_elt_t)));
  2478.     else
  2479.       fail_stack.stack =
  2480.     (fail_stack_elt_t *) malloc (fail_stack.size 
  2481.                      * sizeof (fail_stack_elt_t));
  2482.  
  2483.     /* Initialize some other variables the matcher uses.  */
  2484.     RETALLOC_IF (regstart,     num_regs, const char *);
  2485.     RETALLOC_IF (regend,     num_regs, const char *);
  2486.     RETALLOC_IF (old_regstart,     num_regs, const char *);
  2487.     RETALLOC_IF (old_regend,     num_regs, const char *);
  2488.     RETALLOC_IF (best_regstart,  num_regs, const char *);
  2489.     RETALLOC_IF (best_regend,     num_regs, const char *);
  2490.     RETALLOC_IF (reg_info,     num_regs, register_info_type);
  2491.     RETALLOC_IF (reg_dummy,     num_regs, const char *);
  2492.     RETALLOC_IF (reg_info_dummy, num_regs, register_info_type);
  2493.   }
  2494. #endif
  2495.  
  2496.   return REG_NOERROR;
  2497. } /* regex_compile */
  2498.  
  2499. /* Subroutines for `regex_compile'.  */
  2500.  
  2501. /* Store OP at LOC followed by two-byte integer parameter ARG.  */
  2502.  
  2503. static void
  2504. store_op1 (op, loc, arg)
  2505.     re_opcode_t op;
  2506.     unsigned char *loc;
  2507.     int arg;
  2508. {
  2509.   *loc = (unsigned char) op;
  2510.   STORE_NUMBER (loc + 1, arg);
  2511. }
  2512.  
  2513.  
  2514. /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2.  */
  2515.  
  2516. static void
  2517. store_op2 (op, loc, arg1, arg2)
  2518.     re_opcode_t op;
  2519.     unsigned char *loc;
  2520.     int arg1, arg2;
  2521. {
  2522.   *loc = (unsigned char) op;
  2523.   STORE_NUMBER (loc + 1, arg1);
  2524.   STORE_NUMBER (loc + 3, arg2);
  2525. }
  2526.  
  2527.  
  2528. /* Copy the bytes from LOC to END to open up three bytes of space at LOC
  2529.    for OP followed by two-byte integer parameter ARG.  */
  2530.  
  2531. static void
  2532. insert_op1 (op, loc, arg, end)
  2533.     re_opcode_t op;
  2534.     unsigned char *loc;
  2535.     int arg;
  2536.     unsigned char *end;    
  2537. {
  2538.   register unsigned char *pfrom = end;
  2539.   register unsigned char *pto = end + 3;
  2540.  
  2541.   while (pfrom != loc)
  2542.     *--pto = *--pfrom;
  2543.     
  2544.   store_op1 (op, loc, arg);
  2545. }
  2546.  
  2547.  
  2548. /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2.  */
  2549.  
  2550. static void
  2551. insert_op2 (op, loc, arg1, arg2, end)
  2552.     re_opcode_t op;
  2553.     unsigned char *loc;
  2554.     int arg1, arg2;
  2555.     unsigned char *end;    
  2556. {
  2557.   register unsigned char *pfrom = end;
  2558.   register unsigned char *pto = end + 5;
  2559.  
  2560.   while (pfrom != loc)
  2561.     *--pto = *--pfrom;
  2562.     
  2563.   store_op2 (op, loc, arg1, arg2);
  2564. }
  2565.  
  2566.  
  2567. /* P points to just after a ^ in PATTERN.  Return true if that ^ comes
  2568.    after an alternative or a begin-subexpression.  We assume there is at
  2569.    least one character before the ^.  */
  2570.  
  2571. static boolean
  2572. at_begline_loc_p (pattern, p, syntax)
  2573.     const char *pattern, *p;
  2574.     reg_syntax_t syntax;
  2575. {
  2576.   const char *prev = p - 2;
  2577.   boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
  2578.   
  2579.   return
  2580.        /* After a subexpression?  */
  2581.        (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
  2582.        /* After an alternative?  */
  2583.     || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
  2584. }
  2585.  
  2586.  
  2587. /* The dual of at_begline_loc_p.  This one is for $.  We assume there is
  2588.    at least one character after the $, i.e., `P < PEND'.  */
  2589.  
  2590. static boolean
  2591. at_endline_loc_p (p, pend, syntax)
  2592.     const char *p, *pend;
  2593.     int syntax;
  2594. {
  2595.   const char *next = p;
  2596.   boolean next_backslash = *next == '\\';
  2597.   const char *next_next = p + 1 < pend ? p + 1 : NULL;
  2598.   
  2599.   return
  2600.        /* Before a subexpression?  */
  2601.        (syntax & RE_NO_BK_PARENS ? *next == ')'
  2602.         : next_backslash && next_next && *next_next == ')')
  2603.        /* Before an alternative?  */
  2604.     || (syntax & RE_NO_BK_VBAR ? *next == '|'
  2605.         : next_backslash && next_next && *next_next == '|');
  2606. }
  2607.  
  2608.  
  2609. /* Returns true if REGNUM is in one of COMPILE_STACK's elements and 
  2610.    false if it's not.  */
  2611.  
  2612. static boolean
  2613. group_in_compile_stack (compile_stack, regnum)
  2614.     compile_stack_type compile_stack;
  2615.     regnum_t regnum;
  2616. {
  2617.   int this_element;
  2618.  
  2619.   for (this_element = compile_stack.avail - 1;  
  2620.        this_element >= 0; 
  2621.        this_element--)
  2622.     if (compile_stack.stack[this_element].regnum == regnum)
  2623.       return true;
  2624.  
  2625.   return false;
  2626. }
  2627.  
  2628.  
  2629. /* Read the ending character of a range (in a bracket expression) from the
  2630.    uncompiled pattern *P_PTR (which ends at PEND).  We assume the
  2631.    starting character is in `P[-2]'.  (`P[-1]' is the character `-'.)
  2632.    Then we set the translation of all bits between the starting and
  2633.    ending characters (inclusive) in the compiled pattern B.
  2634.    
  2635.    Return an error code.
  2636.    
  2637.    We use these short variable names so we can use the same macros as
  2638.    `regex_compile' itself.  */
  2639.  
  2640. static reg_errcode_t
  2641. compile_range (p_ptr, pend, translate, syntax, b)
  2642.     const char **p_ptr, *pend;
  2643.     char *translate;
  2644.     reg_syntax_t syntax;
  2645.     unsigned char *b;
  2646. {
  2647.   unsigned this_char;
  2648.  
  2649.   const char *p = *p_ptr;
  2650.   int range_start, range_end;
  2651.   
  2652.   if (p == pend)
  2653.     return REG_ERANGE;
  2654.  
  2655.   /* Even though the pattern is a signed `char *', we need to fetch
  2656.      with unsigned char *'s; if the high bit of the pattern character
  2657.      is set, the range endpoints will be negative if we fetch using a
  2658.      signed char *.
  2659.  
  2660.      We also want to fetch the endpoints without translating them; the 
  2661.      appropriate translation is done in the bit-setting loop below.  */
  2662.   range_start = ((unsigned char *) p)[-2];
  2663.   range_end   = ((unsigned char *) p)[0];
  2664.  
  2665.   /* Have to increment the pointer into the pattern string, so the
  2666.      caller isn't still at the ending character.  */
  2667.   (*p_ptr)++;
  2668.  
  2669.   /* If the start is after the end, the range is empty.  */
  2670.   if (range_start > range_end)
  2671.     return syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
  2672.  
  2673.   /* Here we see why `this_char' has to be larger than an `unsigned
  2674.      char' -- the range is inclusive, so if `range_end' == 0xff
  2675.      (assuming 8-bit characters), we would otherwise go into an infinite
  2676.      loop, since all characters <= 0xff.  */
  2677.   for (this_char = range_start; this_char <= (unsigned) range_end; this_char++)
  2678.     {
  2679.       SET_LIST_BIT (TRANSLATE (this_char));
  2680.     }
  2681.   
  2682.   return REG_NOERROR;
  2683. }
  2684.  
  2685. /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
  2686.    BUFP.  A fastmap records which of the (1 << BYTEWIDTH) possible
  2687.    characters can start a string that matches the pattern.  This fastmap
  2688.    is used by re_search to skip quickly over impossible starting points.
  2689.  
  2690.    The caller must supply the address of a (1 << BYTEWIDTH)-byte data
  2691.    area as BUFP->fastmap.
  2692.    
  2693.    We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
  2694.    the pattern buffer.
  2695.  
  2696.    Returns 0 if we succeed, -2 if an internal error.   */
  2697.  
  2698. int
  2699. re_compile_fastmap (bufp)
  2700.      struct re_pattern_buffer *bufp;
  2701. {
  2702.   int j, k;
  2703. #ifdef MATCH_MAY_ALLOCATE
  2704.   fail_stack_type fail_stack;
  2705. #endif
  2706. #ifndef REGEX_MALLOC
  2707.   char *destination;
  2708. #endif
  2709.   /* We don't push any register information onto the failure stack.  */
  2710.   unsigned num_regs = 0;
  2711.   
  2712.   register char *fastmap = bufp->fastmap;
  2713.   unsigned char *pattern = bufp->buffer;
  2714.   unsigned long size = bufp->used;
  2715.   const unsigned char *p = pattern;
  2716.   register unsigned char *pend = pattern + size;
  2717.  
  2718.   /* Assume that each path through the pattern can be null until
  2719.      proven otherwise.  We set this false at the bottom of switch
  2720.      statement, to which we get only if a particular path doesn't
  2721.      match the empty string.  */
  2722.   boolean path_can_be_null = true;
  2723.  
  2724.   /* We aren't doing a `succeed_n' to begin with.  */
  2725.   boolean succeed_n_p = false;
  2726.  
  2727.   assert (fastmap != NULL && p != NULL);
  2728.   
  2729.   INIT_FAIL_STACK ();
  2730.   bzero (fastmap, 1 << BYTEWIDTH);  /* Assume nothing's valid.  */
  2731.   bufp->fastmap_accurate = 1;        /* It will be when we're done.  */
  2732.   bufp->can_be_null = 0;
  2733.       
  2734.   while (p != pend || !FAIL_STACK_EMPTY ())
  2735.     {
  2736.       if (p == pend)
  2737.         {
  2738.           bufp->can_be_null |= path_can_be_null;
  2739.           
  2740.           /* Reset for next path.  */
  2741.           path_can_be_null = true;
  2742.           
  2743.           p = fail_stack.stack[--fail_stack.avail];
  2744.     }
  2745.  
  2746.       /* We should never be about to go beyond the end of the pattern.  */
  2747.       assert (p < pend);
  2748.       
  2749. #ifdef SWITCH_ENUM_BUG
  2750.       switch ((int) ((re_opcode_t) *p++))
  2751. #else
  2752.       switch ((re_opcode_t) *p++)
  2753. #endif
  2754.     {
  2755.  
  2756.         /* I guess the idea here is to simply not bother with a fastmap
  2757.            if a backreference is used, since it's too hard to figure out
  2758.            the fastmap for the corresponding group.  Setting
  2759.            `can_be_null' stops `re_search_2' from using the fastmap, so
  2760.            that is all we do.  */
  2761.     case duplicate:
  2762.       bufp->can_be_null = 1;
  2763.           return 0;
  2764.  
  2765.  
  2766.       /* Following are the cases which match a character.  These end
  2767.          with `break'.  */
  2768.  
  2769.     case exactn:
  2770.           fastmap[p[1]] = 1;
  2771.       break;
  2772.  
  2773.  
  2774.         case charset:
  2775.           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  2776.         if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
  2777.               fastmap[j] = 1;
  2778.       break;
  2779.  
  2780.  
  2781.     case charset_not:
  2782.       /* Chars beyond end of map must be allowed.  */
  2783.       for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
  2784.             fastmap[j] = 1;
  2785.  
  2786.       for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  2787.         if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
  2788.               fastmap[j] = 1;
  2789.           break;
  2790.  
  2791.  
  2792.     case wordchar:
  2793.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2794.         if (SYNTAX (j) == Sword)
  2795.           fastmap[j] = 1;
  2796.       break;
  2797.  
  2798.  
  2799.     case notwordchar:
  2800.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2801.         if (SYNTAX (j) != Sword)
  2802.           fastmap[j] = 1;
  2803.       break;
  2804.  
  2805.  
  2806.         case anychar:
  2807.           /* `.' matches anything ...  */
  2808.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2809.             fastmap[j] = 1;
  2810.  
  2811.           /* ... except perhaps newline.  */
  2812.           if (!(bufp->syntax & RE_DOT_NEWLINE))
  2813.             fastmap['\n'] = 0;
  2814.  
  2815.           /* Return if we have already set `can_be_null'; if we have,
  2816.              then the fastmap is irrelevant.  Something's wrong here.  */
  2817.       else if (bufp->can_be_null)
  2818.         return 0;
  2819.  
  2820.           /* Otherwise, have to check alternative paths.  */
  2821.       break;
  2822.  
  2823.  
  2824. #ifdef emacs
  2825.         case syntaxspec:
  2826.       k = *p++;
  2827.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2828.         if (SYNTAX (j) == (enum syntaxcode) k)
  2829.           fastmap[j] = 1;
  2830.       break;
  2831.  
  2832.  
  2833.     case notsyntaxspec:
  2834.       k = *p++;
  2835.       for (j = 0; j < (1 << BYTEWIDTH); j++)
  2836.         if (SYNTAX (j) != (enum syntaxcode) k)
  2837.           fastmap[j] = 1;
  2838.       break;
  2839.  
  2840.  
  2841.       /* All cases after this match the empty string.  These end with
  2842.          `continue'.  */
  2843.  
  2844.  
  2845.     case before_dot:
  2846.     case at_dot:
  2847.     case after_dot:
  2848.           continue;
  2849. #endif /* not emacs */
  2850.  
  2851.  
  2852.         case no_op:
  2853.         case begline:
  2854.         case endline:
  2855.     case begbuf:
  2856.     case endbuf:
  2857.     case wordbound:
  2858.     case notwordbound:
  2859.     case wordbeg:
  2860.     case wordend:
  2861.         case push_dummy_failure:
  2862.           continue;
  2863.  
  2864.  
  2865.     case jump_n:
  2866.         case pop_failure_jump:
  2867.     case maybe_pop_jump:
  2868.     case jump:
  2869.         case jump_past_alt:
  2870.     case dummy_failure_jump:
  2871.           EXTRACT_NUMBER_AND_INCR (j, p);
  2872.       p += j;    
  2873.       if (j > 0)
  2874.         continue;
  2875.             
  2876.           /* Jump backward implies we just went through the body of a
  2877.              loop and matched nothing.  Opcode jumped to should be
  2878.              `on_failure_jump' or `succeed_n'.  Just treat it like an
  2879.              ordinary jump.  For a * loop, it has pushed its failure
  2880.              point already; if so, discard that as redundant.  */
  2881.           if ((re_opcode_t) *p != on_failure_jump
  2882.           && (re_opcode_t) *p != succeed_n)
  2883.         continue;
  2884.  
  2885.           p++;
  2886.           EXTRACT_NUMBER_AND_INCR (j, p);
  2887.           p += j;        
  2888.       
  2889.           /* If what's on the stack is where we are now, pop it.  */
  2890.           if (!FAIL_STACK_EMPTY () 
  2891.           && fail_stack.stack[fail_stack.avail - 1] == p)
  2892.             fail_stack.avail--;
  2893.  
  2894.           continue;
  2895.  
  2896.  
  2897.         case on_failure_jump:
  2898.         case on_failure_keep_string_jump:
  2899.     handle_on_failure_jump:
  2900.           EXTRACT_NUMBER_AND_INCR (j, p);
  2901.  
  2902.           /* For some patterns, e.g., `(a?)?', `p+j' here points to the
  2903.              end of the pattern.  We don't want to push such a point,
  2904.              since when we restore it above, entering the switch will
  2905.              increment `p' past the end of the pattern.  We don't need
  2906.              to push such a point since we obviously won't find any more
  2907.              fastmap entries beyond `pend'.  Such a pattern can match
  2908.              the null string, though.  */
  2909.           if (p + j < pend)
  2910.             {
  2911.               if (!PUSH_PATTERN_OP (p + j, fail_stack))
  2912.                 return -2;
  2913.             }
  2914.           else
  2915.             bufp->can_be_null = 1;
  2916.  
  2917.           if (succeed_n_p)
  2918.             {
  2919.               EXTRACT_NUMBER_AND_INCR (k, p);    /* Skip the n.  */
  2920.               succeed_n_p = false;
  2921.         }
  2922.  
  2923.           continue;
  2924.  
  2925.  
  2926.     case succeed_n:
  2927.           /* Get to the number of times to succeed.  */
  2928.           p += 2;        
  2929.  
  2930.           /* Increment p past the n for when k != 0.  */
  2931.           EXTRACT_NUMBER_AND_INCR (k, p);
  2932.           if (k == 0)
  2933.         {
  2934.               p -= 4;
  2935.             succeed_n_p = true;  /* Spaghetti code alert.  */
  2936.               goto handle_on_failure_jump;
  2937.             }
  2938.           continue;
  2939.  
  2940.  
  2941.     case set_number_at:
  2942.           p += 4;
  2943.           continue;
  2944.  
  2945.  
  2946.     case start_memory:
  2947.         case stop_memory:
  2948.       p += 2;
  2949.       continue;
  2950.  
  2951.  
  2952.     default:
  2953.           abort (); /* We have listed all the cases.  */
  2954.         } /* switch *p++ */
  2955.  
  2956.       /* Getting here means we have found the possible starting
  2957.          characters for one path of the pattern -- and that the empty
  2958.          string does not match.  We need not follow this path further.
  2959.          Instead, look at the next alternative (remembered on the
  2960.          stack), or quit if no more.  The test at the top of the loop
  2961.          does these things.  */
  2962.       path_can_be_null = false;
  2963.       p = pend;
  2964.     } /* while p */
  2965.  
  2966.   /* Set `can_be_null' for the last path (also the first path, if the
  2967.      pattern is empty).  */
  2968.   bufp->can_be_null |= path_can_be_null;
  2969.   return 0;
  2970. } /* re_compile_fastmap */
  2971.  
  2972. /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
  2973.    ENDS.  Subsequent matches using PATTERN_BUFFER and REGS will use
  2974.    this memory for recording register information.  STARTS and ENDS
  2975.    must be allocated using the malloc library routine, and must each
  2976.    be at least NUM_REGS * sizeof (regoff_t) bytes long.
  2977.  
  2978.    If NUM_REGS == 0, then subsequent matches should allocate their own
  2979.    register data.
  2980.  
  2981.    Unless this function is called, the first search or match using
  2982.    PATTERN_BUFFER will allocate its own register data, without
  2983.    freeing the old data.  */
  2984.  
  2985. void
  2986. re_set_registers (bufp, regs, num_regs, starts, ends)
  2987.     struct re_pattern_buffer *bufp;
  2988.     struct re_registers *regs;
  2989.     unsigned num_regs;
  2990.     regoff_t *starts, *ends;
  2991. {
  2992.   if (num_regs)
  2993.     {
  2994.       bufp->regs_allocated = REGS_REALLOCATE;
  2995.       regs->num_regs = num_regs;
  2996.       regs->start = starts;
  2997.       regs->end = ends;
  2998.     }
  2999.   else
  3000.     {
  3001.       bufp->regs_allocated = REGS_UNALLOCATED;
  3002.       regs->num_regs = 0;
  3003.       regs->start = regs->end = (int *) (regoff_t) 0;
  3004.     }
  3005. }
  3006.  
  3007. /* Searching routines.  */
  3008.  
  3009. /* Like re_search_2, below, but only one string is specified, and
  3010.    doesn't let you say where to stop matching. */
  3011.  
  3012. int
  3013. re_search (bufp, string, size, startpos, range, regs)
  3014.      struct re_pattern_buffer *bufp;
  3015.      const char *string;
  3016.      int size, startpos, range;
  3017.      struct re_registers *regs;
  3018. {
  3019.   return re_search_2 (bufp, NULL, 0, string, size, startpos, range, 
  3020.               regs, size);
  3021. }
  3022.  
  3023.  
  3024. /* Using the compiled pattern in BUFP->buffer, first tries to match the
  3025.    virtual concatenation of STRING1 and STRING2, starting first at index
  3026.    STARTPOS, then at STARTPOS + 1, and so on.
  3027.    
  3028.    STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
  3029.    
  3030.    RANGE is how far to scan while trying to match.  RANGE = 0 means try
  3031.    only at STARTPOS; in general, the last start tried is STARTPOS +
  3032.    RANGE.
  3033.    
  3034.    In REGS, return the indices of the virtual concatenation of STRING1
  3035.    and STRING2 that matched the entire BUFP->buffer and its contained
  3036.    subexpressions.
  3037.    
  3038.    Do not consider matching one past the index STOP in the virtual
  3039.    concatenation of STRING1 and STRING2.
  3040.  
  3041.    We return either the position in the strings at which the match was
  3042.    found, -1 if no match, or -2 if error (such as failure
  3043.    stack overflow).  */
  3044.  
  3045. int
  3046. re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
  3047.      struct re_pattern_buffer *bufp;
  3048.      const char *string1, *string2;
  3049.      int size1, size2;
  3050.      int startpos;
  3051.      int range;
  3052.      struct re_registers *regs;
  3053.      int stop;
  3054. {
  3055.   int val;
  3056.   register char *fastmap = bufp->fastmap;
  3057.   register char *translate = bufp->translate;
  3058.   int total_size = size1 + size2;
  3059.   int endpos = startpos + range;
  3060.  
  3061.   /* Check for out-of-range STARTPOS.  */
  3062.   if (startpos < 0 || startpos > total_size)
  3063.     return -1;
  3064.     
  3065.   /* Fix up RANGE if it might eventually take us outside
  3066.      the virtual concatenation of STRING1 and STRING2.  */
  3067.   if (endpos < -1)
  3068.     range = -1 - startpos;
  3069.   else if (endpos > total_size)
  3070.     range = total_size - startpos;
  3071.  
  3072.   /* If the search isn't to be a backwards one, don't waste time in a
  3073.      search for a pattern that must be anchored.  */
  3074.   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
  3075.     {
  3076.       if (startpos > 0)
  3077.     return -1;
  3078.       else
  3079.     range = 1;
  3080.     }
  3081.  
  3082.   /* Update the fastmap now if not correct already.  */
  3083.   if (fastmap && !bufp->fastmap_accurate)
  3084.     if (re_compile_fastmap (bufp) == -2)
  3085.       return -2;
  3086.   
  3087.   /* Loop through the string, looking for a place to start matching.  */
  3088.   for (;;)
  3089.     { 
  3090.       /* If a fastmap is supplied, skip quickly over characters that
  3091.          cannot be the start of a match.  If the pattern can match the
  3092.          null string, however, we don't need to skip characters; we want
  3093.          the first null string.  */
  3094.       if (fastmap && startpos < total_size && !bufp->can_be_null)
  3095.     {
  3096.       if (range > 0)    /* Searching forwards.  */
  3097.         {
  3098.           register const char *d;
  3099.           register int lim = 0;
  3100.           int irange = range;
  3101.  
  3102.               if (startpos < size1 && startpos + range >= size1)
  3103.                 lim = range - (size1 - startpos);
  3104.  
  3105.           d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
  3106.    
  3107.               /* Written out as an if-else to avoid testing `translate'
  3108.                  inside the loop.  */
  3109.           if (translate)
  3110.                 while (range > lim
  3111.                        && !fastmap[(unsigned char)
  3112.                    translate[(unsigned char) *d++]])
  3113.                   range--;
  3114.           else
  3115.                 while (range > lim && !fastmap[(unsigned char) *d++])
  3116.                   range--;
  3117.  
  3118.           startpos += irange - range;
  3119.         }
  3120.       else                /* Searching backwards.  */
  3121.         {
  3122.           register char c = (size1 == 0 || startpos >= size1
  3123.                                  ? string2[startpos - size1] 
  3124.                                  : string1[startpos]);
  3125.  
  3126.           if (!fastmap[(unsigned char) TRANSLATE (c)])
  3127.         goto advance;
  3128.         }
  3129.     }
  3130.  
  3131.       /* If can't match the null string, and that's all we have left, fail.  */
  3132.       if (range >= 0 && startpos == total_size && fastmap
  3133.           && !bufp->can_be_null)
  3134.     return -1;
  3135.  
  3136.       val = re_match_2 (bufp, string1, size1, string2, size2,
  3137.                     startpos, regs, stop);
  3138.       if (val >= 0)
  3139.     return startpos;
  3140.         
  3141.       if (val == -2)
  3142.     return -2;
  3143.  
  3144.     advance:
  3145.       if (!range) 
  3146.         break;
  3147.       else if (range > 0) 
  3148.         {
  3149.           range--; 
  3150.           startpos++;
  3151.         }
  3152.       else
  3153.         {
  3154.           range++; 
  3155.           startpos--;
  3156.         }
  3157.     }
  3158.   return -1;
  3159. } /* re_search_2 */
  3160.  
  3161. /* Declarations and macros for re_match_2.  */
  3162.  
  3163. static int bcmp_translate ();
  3164. static boolean alt_match_null_string_p (),
  3165.                common_op_match_null_string_p (),
  3166.                group_match_null_string_p ();
  3167.  
  3168. /* This converts PTR, a pointer into one of the search strings `string1'
  3169.    and `string2' into an offset from the beginning of that string.  */
  3170. #define POINTER_TO_OFFSET(ptr)                        \
  3171.   (FIRST_STRING_P (ptr) ? (ptr) - string1 : (ptr) - string2 + size1)
  3172.  
  3173. /* Macros for dealing with the split strings in re_match_2.  */
  3174.  
  3175. #define MATCHING_IN_FIRST_STRING  (dend == end_match_1)
  3176.  
  3177. /* Call before fetching a character with *d.  This switches over to
  3178.    string2 if necessary.  */
  3179. #define PREFETCH()                            \
  3180.   while (d == dend)                                \
  3181.     {                                    \
  3182.       /* End of string2 => fail.  */                    \
  3183.       if (dend == end_match_2)                         \
  3184.         goto fail;                            \
  3185.       /* End of string1 => advance to string2.  */             \
  3186.       d = string2;                                \
  3187.       dend = end_match_2;                        \
  3188.     }
  3189.  
  3190.  
  3191. /* Test if at very beginning or at very end of the virtual concatenation
  3192.    of `string1' and `string2'.  If only one string, it's `string2'.  */
  3193. #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
  3194. #define AT_STRINGS_END(d) ((d) == end2)    
  3195.  
  3196.  
  3197. /* Test if D points to a character which is word-constituent.  We have
  3198.    two special cases to check for: if past the end of string1, look at
  3199.    the first character in string2; and if before the beginning of
  3200.    string2, look at the last character in string1.  */
  3201. #define WORDCHAR_P(d)                            \
  3202.   (SYNTAX ((d) == end1 ? *string2                    \
  3203.            : (d) == string2 - 1 ? *(end1 - 1) : *(d))            \
  3204.    == Sword)
  3205.  
  3206. /* Test if the character before D and the one at D differ with respect
  3207.    to being word-constituent.  */
  3208. #define AT_WORD_BOUNDARY(d)                        \
  3209.   (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)                \
  3210.    || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
  3211.  
  3212.  
  3213. /* Free everything we malloc.  */
  3214. #ifdef MATCH_MAY_ALLOCATE
  3215. #ifdef REGEX_MALLOC
  3216. #define FREE_VAR(var) if (var) free (var); var = NULL
  3217. #define FREE_VARIABLES()                        \
  3218.   do {                                    \
  3219.     FREE_VAR (fail_stack.stack);                    \
  3220.     FREE_VAR (regstart);                        \
  3221.     FREE_VAR (regend);                            \
  3222.     FREE_VAR (old_regstart);                        \
  3223.     FREE_VAR (old_regend);                        \
  3224.     FREE_VAR (best_regstart);                        \
  3225.     FREE_VAR (best_regend);                        \
  3226.     FREE_VAR (reg_info);                        \
  3227.     FREE_VAR (reg_dummy);                        \
  3228.     FREE_VAR (reg_info_dummy);                        \
  3229.   } while (0)
  3230. #else /* not REGEX_MALLOC */
  3231. /* Some MIPS systems (at least) want this to free alloca'd storage.  */
  3232. #define FREE_VARIABLES() alloca (0)
  3233. #endif /* not REGEX_MALLOC */
  3234. #else
  3235. #define FREE_VARIABLES() /* Do nothing!  */
  3236. #endif /* not MATCH_MAY_ALLOCATE */
  3237.  
  3238. /* These values must meet several constraints.  They must not be valid
  3239.    register values; since we have a limit of 255 registers (because
  3240.    we use only one byte in the pattern for the register number), we can
  3241.    use numbers larger than 255.  They must differ by 1, because of
  3242.    NUM_FAILURE_ITEMS above.  And the value for the lowest register must
  3243.    be larger than the value for the highest register, so we do not try
  3244.    to actually save any registers when none are active.  */
  3245. #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
  3246. #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
  3247.  
  3248. /* Matching routines.  */
  3249.  
  3250. #ifndef emacs   /* Emacs never uses this.  */
  3251. /* re_match is like re_match_2 except it takes only a single string.  */
  3252.  
  3253. int
  3254. re_match (bufp, string, size, pos, regs)
  3255.      struct re_pattern_buffer *bufp;
  3256.      const char *string;
  3257.      int size, pos;
  3258.      struct re_registers *regs;
  3259.  {
  3260.   return re_match_2 (bufp, NULL, 0, string, size, pos, regs, size); 
  3261. }
  3262. #endif /* not emacs */
  3263.  
  3264.  
  3265. /* re_match_2 matches the compiled pattern in BUFP against the
  3266.    the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
  3267.    and SIZE2, respectively).  We start matching at POS, and stop
  3268.    matching at STOP.
  3269.    
  3270.    If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
  3271.    store offsets for the substring each group matched in REGS.  See the
  3272.    documentation for exactly how many groups we fill.
  3273.  
  3274.    We return -1 if no match, -2 if an internal error (such as the
  3275.    failure stack overflowing).  Otherwise, we return the length of the
  3276.    matched substring.  */
  3277.  
  3278. int
  3279. re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
  3280.      struct re_pattern_buffer *bufp;
  3281.      const char *string1, *string2;
  3282.      int size1, size2;
  3283.      int pos;
  3284.      struct re_registers *regs;
  3285.      int stop;
  3286. {
  3287.   /* General temporaries.  */
  3288.   int mcnt;
  3289.   unsigned char *p1;
  3290.  
  3291.   /* Just past the end of the corresponding string.  */
  3292.   const char *end1, *end2;
  3293.  
  3294.   /* Pointers into string1 and string2, just past the last characters in
  3295.      each to consider matching.  */
  3296.   const char *end_match_1, *end_match_2;
  3297.  
  3298.   /* Where we are in the data, and the end of the current string.  */
  3299.   const char *d, *dend;
  3300.   
  3301.   /* Where we are in the pattern, and the end of the pattern.  */
  3302.   unsigned char *p = bufp->buffer;
  3303.   register unsigned char *pend = p + bufp->used;
  3304.  
  3305.   /* We use this to map every character in the string.  */
  3306.   char *translate = bufp->translate;
  3307.  
  3308.   /* Failure point stack.  Each place that can handle a failure further
  3309.      down the line pushes a failure point on this stack.  It consists of
  3310.      restart, regend, and reg_info for all registers corresponding to
  3311.      the subexpressions we're currently inside, plus the number of such
  3312.      registers, and, finally, two char *'s.  The first char * is where
  3313.      to resume scanning the pattern; the second one is where to resume
  3314.      scanning the strings.  If the latter is zero, the failure point is
  3315.      a ``dummy''; if a failure happens and the failure point is a dummy,
  3316.      it gets discarded and the next next one is tried.  */
  3317. #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
  3318.   fail_stack_type fail_stack;
  3319. #endif
  3320. #ifdef DEBUG
  3321.   static unsigned failure_id = 0;
  3322.   unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
  3323. #endif
  3324.  
  3325.   /* We fill all the registers internally, independent of what we
  3326.      return, for use in backreferences.  The number here includes
  3327.      an element for register zero.  */
  3328.   unsigned num_regs = bufp->re_nsub + 1;
  3329.   
  3330.   /* The currently active registers.  */
  3331.   unsigned lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3332.   unsigned highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3333.  
  3334.   /* Information on the contents of registers. These are pointers into
  3335.      the input strings; they record just what was matched (on this
  3336.      attempt) by a subexpression part of the pattern, that is, the
  3337.      regnum-th regstart pointer points to where in the pattern we began
  3338.      matching and the regnum-th regend points to right after where we
  3339.      stopped matching the regnum-th subexpression.  (The zeroth register
  3340.      keeps track of what the whole pattern matches.)  */
  3341. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3342.   const char **regstart, **regend;
  3343. #endif
  3344.  
  3345.   /* If a group that's operated upon by a repetition operator fails to
  3346.      match anything, then the register for its start will need to be
  3347.      restored because it will have been set to wherever in the string we
  3348.      are when we last see its open-group operator.  Similarly for a
  3349.      register's end.  */
  3350. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3351.   const char **old_regstart, **old_regend;
  3352. #endif
  3353.  
  3354.   /* The is_active field of reg_info helps us keep track of which (possibly
  3355.      nested) subexpressions we are currently in. The matched_something
  3356.      field of reg_info[reg_num] helps us tell whether or not we have
  3357.      matched any of the pattern so far this time through the reg_num-th
  3358.      subexpression.  These two fields get reset each time through any
  3359.      loop their register is in.  */
  3360. #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global.  */
  3361.   register_info_type *reg_info; 
  3362. #endif
  3363.  
  3364.   /* The following record the register info as found in the above
  3365.      variables when we find a match better than any we've seen before. 
  3366.      This happens as we backtrack through the failure points, which in
  3367.      turn happens only if we have not yet matched the entire string. */
  3368.   unsigned best_regs_set = false;
  3369. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3370.   const char **best_regstart, **best_regend;
  3371. #endif
  3372.   
  3373.   /* Logically, this is `best_regend[0]'.  But we don't want to have to
  3374.      allocate space for that if we're not allocating space for anything
  3375.      else (see below).  Also, we never need info about register 0 for
  3376.      any of the other register vectors, and it seems rather a kludge to
  3377.      treat `best_regend' differently than the rest.  So we keep track of
  3378.      the end of the best match so far in a separate variable.  We
  3379.      initialize this to NULL so that when we backtrack the first time
  3380.      and need to test it, it's not garbage.  */
  3381.   const char *match_end = NULL;
  3382.  
  3383.   /* Used when we pop values we don't care about.  */
  3384. #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global.  */
  3385.   const char **reg_dummy;
  3386.   register_info_type *reg_info_dummy;
  3387. #endif
  3388.  
  3389. #ifdef DEBUG
  3390.   /* Counts the total number of registers pushed.  */
  3391.   unsigned num_regs_pushed = 0;     
  3392. #endif
  3393.  
  3394.   DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
  3395.   
  3396.   INIT_FAIL_STACK ();
  3397.   
  3398. #ifdef MATCH_MAY_ALLOCATE
  3399.   /* Do not bother to initialize all the register variables if there are
  3400.      no groups in the pattern, as it takes a fair amount of time.  If
  3401.      there are groups, we include space for register 0 (the whole
  3402.      pattern), even though we never use it, since it simplifies the
  3403.      array indexing.  We should fix this.  */
  3404.   if (bufp->re_nsub)
  3405.     {
  3406.       regstart = REGEX_TALLOC (num_regs, const char *);
  3407.       regend = REGEX_TALLOC (num_regs, const char *);
  3408.       old_regstart = REGEX_TALLOC (num_regs, const char *);
  3409.       old_regend = REGEX_TALLOC (num_regs, const char *);
  3410.       best_regstart = REGEX_TALLOC (num_regs, const char *);
  3411.       best_regend = REGEX_TALLOC (num_regs, const char *);
  3412.       reg_info = REGEX_TALLOC (num_regs, register_info_type);
  3413.       reg_dummy = REGEX_TALLOC (num_regs, const char *);
  3414.       reg_info_dummy = REGEX_TALLOC (num_regs, register_info_type);
  3415.  
  3416.       if (!(regstart && regend && old_regstart && old_regend && reg_info 
  3417.             && best_regstart && best_regend && reg_dummy && reg_info_dummy)) 
  3418.         {
  3419.           FREE_VARIABLES ();
  3420.           return -2;
  3421.         }
  3422.     }
  3423. #if defined (REGEX_MALLOC)
  3424.   else
  3425.     {
  3426.       /* We must initialize all our variables to NULL, so that
  3427.          `FREE_VARIABLES' doesn't try to free them.  */
  3428.       regstart = regend = old_regstart = old_regend = best_regstart
  3429.         = best_regend = reg_dummy = NULL;
  3430.       reg_info = reg_info_dummy = (register_info_type *) NULL;
  3431.     }
  3432. #endif /* REGEX_MALLOC */
  3433. #endif /* MATCH_MAY_ALLOCATE */
  3434.  
  3435.   /* The starting position is bogus.  */
  3436.   if (pos < 0 || pos > size1 + size2)
  3437.     {
  3438.       FREE_VARIABLES ();
  3439.       return -1;
  3440.     }
  3441.     
  3442.   /* Initialize subexpression text positions to -1 to mark ones that no
  3443.      start_memory/stop_memory has been seen for. Also initialize the
  3444.      register information struct.  */
  3445.   for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
  3446.     {
  3447.       regstart[mcnt] = regend[mcnt] 
  3448.         = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
  3449.         
  3450.       REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
  3451.       IS_ACTIVE (reg_info[mcnt]) = 0;
  3452.       MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  3453.       EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  3454.     }
  3455.   
  3456.   /* We move `string1' into `string2' if the latter's empty -- but not if
  3457.      `string1' is null.  */
  3458.   if (size2 == 0 && string1 != NULL)
  3459.     {
  3460.       string2 = string1;
  3461.       size2 = size1;
  3462.       string1 = 0;
  3463.       size1 = 0;
  3464.     }
  3465.   end1 = string1 + size1;
  3466.   end2 = string2 + size2;
  3467.  
  3468.   /* Compute where to stop matching, within the two strings.  */
  3469.   if (stop <= size1)
  3470.     {
  3471.       end_match_1 = string1 + stop;
  3472.       end_match_2 = string2;
  3473.     }
  3474.   else
  3475.     {
  3476.       end_match_1 = end1;
  3477.       end_match_2 = string2 + stop - size1;
  3478.     }
  3479.  
  3480.   /* `p' scans through the pattern as `d' scans through the data. 
  3481.      `dend' is the end of the input string that `d' points within.  `d'
  3482.      is advanced into the following input string whenever necessary, but
  3483.      this happens before fetching; therefore, at the beginning of the
  3484.      loop, `d' can be pointing at the end of a string, but it cannot
  3485.      equal `string2'.  */
  3486.   if (size1 > 0 && pos <= size1)
  3487.     {
  3488.       d = string1 + pos;
  3489.       dend = end_match_1;
  3490.     }
  3491.   else
  3492.     {
  3493.       d = string2 + pos - size1;
  3494.       dend = end_match_2;
  3495.     }
  3496.  
  3497.   DEBUG_PRINT1 ("The compiled pattern is: ");
  3498.   DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
  3499.   DEBUG_PRINT1 ("The string to match is: `");
  3500.   DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
  3501.   DEBUG_PRINT1 ("'\n");
  3502.   
  3503.   /* This loops over pattern commands.  It exits by returning from the
  3504.      function if the match is complete, or it drops through if the match
  3505.      fails at this starting point in the input data.  */
  3506.   for (;;)
  3507.     {
  3508.       DEBUG_PRINT2 ("\n0x%x: ", p);
  3509.  
  3510.       if (p == pend)
  3511.     { /* End of pattern means we might have succeeded.  */
  3512.           DEBUG_PRINT1 ("end of pattern ... ");
  3513.           
  3514.       /* If we haven't matched the entire string, and we want the
  3515.              longest match, try backtracking.  */
  3516.           if (d != end_match_2)
  3517.         {
  3518.               DEBUG_PRINT1 ("backtracking.\n");
  3519.               
  3520.               if (!FAIL_STACK_EMPTY ())
  3521.                 { /* More failure points to try.  */
  3522.                   boolean same_str_p = (FIRST_STRING_P (match_end) 
  3523.                                 == MATCHING_IN_FIRST_STRING);
  3524.  
  3525.                   /* If exceeds best match so far, save it.  */
  3526.                   if (!best_regs_set
  3527.                       || (same_str_p && d > match_end)
  3528.                       || (!same_str_p && !MATCHING_IN_FIRST_STRING))
  3529.                     {
  3530.                       best_regs_set = true;
  3531.                       match_end = d;
  3532.                       
  3533.                       DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
  3534.                       
  3535.                       for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
  3536.                         {
  3537.                           best_regstart[mcnt] = regstart[mcnt];
  3538.                           best_regend[mcnt] = regend[mcnt];
  3539.                         }
  3540.                     }
  3541.                   goto fail;           
  3542.                 }
  3543.  
  3544.               /* If no failure points, don't restore garbage.  */
  3545.               else if (best_regs_set)   
  3546.                 {
  3547.               restore_best_regs:
  3548.                   /* Restore best match.  It may happen that `dend ==
  3549.                      end_match_1' while the restored d is in string2.
  3550.                      For example, the pattern `x.*y.*z' against the
  3551.                      strings `x-' and `y-z-', if the two strings are
  3552.                      not consecutive in memory.  */
  3553.                   DEBUG_PRINT1 ("Restoring best registers.\n");
  3554.                   
  3555.                   d = match_end;
  3556.                   dend = ((d >= string1 && d <= end1)
  3557.                    ? end_match_1 : end_match_2);
  3558.  
  3559.           for (mcnt = 1; (unsigned) mcnt < num_regs; mcnt++)
  3560.             {
  3561.               regstart[mcnt] = best_regstart[mcnt];
  3562.               regend[mcnt] = best_regend[mcnt];
  3563.             }
  3564.                 }
  3565.             } /* d != end_match_2 */
  3566.  
  3567.           DEBUG_PRINT1 ("Accepting match.\n");
  3568.  
  3569.           /* If caller wants register contents data back, do it.  */
  3570.           if (regs && !bufp->no_sub)
  3571.         {
  3572.               /* Have the register data arrays been allocated?  */
  3573.               if (bufp->regs_allocated == REGS_UNALLOCATED)
  3574.                 { /* No.  So allocate them with malloc.  We need one
  3575.                      extra element beyond `num_regs' for the `-1' marker
  3576.                      GNU code uses.  */
  3577.                   regs->num_regs = MAX (RE_NREGS, num_regs + 1);
  3578.                   regs->start = TALLOC (regs->num_regs, regoff_t);
  3579.                   regs->end = TALLOC (regs->num_regs, regoff_t);
  3580.                   if (regs->start == NULL || regs->end == NULL)
  3581.                     return -2;
  3582.                   bufp->regs_allocated = REGS_REALLOCATE;
  3583.                 }
  3584.               else if (bufp->regs_allocated == REGS_REALLOCATE)
  3585.                 { /* Yes.  If we need more elements than were already
  3586.                      allocated, reallocate them.  If we need fewer, just
  3587.                      leave it alone.  */
  3588.                   if (regs->num_regs < num_regs + 1)
  3589.                     {
  3590.                       regs->num_regs = num_regs + 1;
  3591.                       RETALLOC (regs->start, regs->num_regs, regoff_t);
  3592.                       RETALLOC (regs->end, regs->num_regs, regoff_t);
  3593.                       if (regs->start == NULL || regs->end == NULL)
  3594.                         return -2;
  3595.                     }
  3596.                 }
  3597.               else
  3598.         {
  3599.           /* These braces fend off a "empty body in an else-statement"
  3600.              warning under GCC when assert expands to nothing.  */
  3601.           assert (bufp->regs_allocated == REGS_FIXED);
  3602.         }
  3603.  
  3604.               /* Convert the pointer data in `regstart' and `regend' to
  3605.                  indices.  Register zero has to be set differently,
  3606.                  since we haven't kept track of any info for it.  */
  3607.               if (regs->num_regs > 0)
  3608.                 {
  3609.                   regs->start[0] = pos;
  3610.                   regs->end[0] = (MATCHING_IN_FIRST_STRING ? d - string1
  3611.                       : d - string2 + size1);
  3612.                 }
  3613.               
  3614.               /* Go through the first `min (num_regs, regs->num_regs)'
  3615.                  registers, since that is all we initialized.  */
  3616.           for (mcnt = 1; (unsigned) mcnt < MIN (num_regs, regs->num_regs); mcnt++)
  3617.         {
  3618.                   if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
  3619.                     regs->start[mcnt] = regs->end[mcnt] = -1;
  3620.                   else
  3621.                     {
  3622.               regs->start[mcnt] = POINTER_TO_OFFSET (regstart[mcnt]);
  3623.                       regs->end[mcnt] = POINTER_TO_OFFSET (regend[mcnt]);
  3624.                     }
  3625.         }
  3626.               
  3627.               /* If the regs structure we return has more elements than
  3628.                  were in the pattern, set the extra elements to -1.  If
  3629.                  we (re)allocated the registers, this is the case,
  3630.                  because we always allocate enough to have at least one
  3631.                  -1 at the end.  */
  3632.               for (mcnt = num_regs; (unsigned) mcnt < regs->num_regs; mcnt++)
  3633.                 regs->start[mcnt] = regs->end[mcnt] = -1;
  3634.         } /* regs && !bufp->no_sub */
  3635.  
  3636.           FREE_VARIABLES ();
  3637.           DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
  3638.                         nfailure_points_pushed, nfailure_points_popped,
  3639.                         nfailure_points_pushed - nfailure_points_popped);
  3640.           DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
  3641.  
  3642.           mcnt = d - pos - (MATCHING_IN_FIRST_STRING 
  3643.                 ? string1 
  3644.                 : string2 - size1);
  3645.  
  3646.           DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
  3647.  
  3648.           return mcnt;
  3649.         }
  3650.  
  3651.       /* Otherwise match next pattern command.  */
  3652. #ifdef SWITCH_ENUM_BUG
  3653.       switch ((int) ((re_opcode_t) *p++))
  3654. #else
  3655.       switch ((re_opcode_t) *p++)
  3656. #endif
  3657.     {
  3658.         /* Ignore these.  Used to ignore the n of succeed_n's which
  3659.            currently have n == 0.  */
  3660.         case no_op:
  3661.           DEBUG_PRINT1 ("EXECUTING no_op.\n");
  3662.           break;
  3663.  
  3664.  
  3665.         /* Match the next n pattern characters exactly.  The following
  3666.            byte in the pattern defines n, and the n bytes after that
  3667.            are the characters to match.  */
  3668.     case exactn:
  3669.       mcnt = *p++;
  3670.           DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
  3671.  
  3672.           /* This is written out as an if-else so we don't waste time
  3673.              testing `translate' inside the loop.  */
  3674.           if (translate)
  3675.         {
  3676.           do
  3677.         {
  3678.           PREFETCH ();
  3679.           if (translate[(unsigned char) *d++] != (char) *p++)
  3680.                     goto fail;
  3681.         }
  3682.           while (--mcnt);
  3683.         }
  3684.       else
  3685.         {
  3686.           do
  3687.         {
  3688.           PREFETCH ();
  3689.           if (*d++ != (char) *p++) goto fail;
  3690.         }
  3691.           while (--mcnt);
  3692.         }
  3693.       SET_REGS_MATCHED ();
  3694.           break;
  3695.  
  3696.  
  3697.         /* Match any character except possibly a newline or a null.  */
  3698.     case anychar:
  3699.           DEBUG_PRINT1 ("EXECUTING anychar.\n");
  3700.  
  3701.           PREFETCH ();
  3702.  
  3703.           if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
  3704.               || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
  3705.         goto fail;
  3706.  
  3707.           SET_REGS_MATCHED ();
  3708.           DEBUG_PRINT2 ("  Matched `%d'.\n", *d);
  3709.           d++;
  3710.       break;
  3711.  
  3712.  
  3713.     case charset:
  3714.     case charset_not:
  3715.       {
  3716.         register unsigned char c;
  3717.         boolean not = (re_opcode_t) *(p - 1) == charset_not;
  3718.  
  3719.             DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
  3720.  
  3721.         PREFETCH ();
  3722.         c = TRANSLATE (*d); /* The character to match.  */
  3723.  
  3724.             /* Cast to `unsigned' instead of `unsigned char' in case the
  3725.                bit list is a full 32 bytes long.  */
  3726.         if (c < (unsigned) (*p * BYTEWIDTH)
  3727.         && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  3728.           not = !not;
  3729.  
  3730.         p += 1 + *p;
  3731.  
  3732.         if (!not) goto fail;
  3733.             
  3734.         SET_REGS_MATCHED ();
  3735.             d++;
  3736.         break;
  3737.       }
  3738.  
  3739.  
  3740.         /* The beginning of a group is represented by start_memory.
  3741.            The arguments are the register number in the next byte, and the
  3742.            number of groups inner to this one in the next.  The text
  3743.            matched within the group is recorded (in the internal
  3744.            registers data structure) under the register number.  */
  3745.         case start_memory:
  3746.       DEBUG_PRINT3 ("EXECUTING start_memory %d (%d):\n", *p, p[1]);
  3747.  
  3748.           /* Find out if this group can match the empty string.  */
  3749.       p1 = p;        /* To send to group_match_null_string_p.  */
  3750.           
  3751.           if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
  3752.             REG_MATCH_NULL_STRING_P (reg_info[*p]) 
  3753.               = group_match_null_string_p (&p1, pend, reg_info);
  3754.  
  3755.           /* Save the position in the string where we were the last time
  3756.              we were at this open-group operator in case the group is
  3757.              operated upon by a repetition operator, e.g., with `(a*)*b'
  3758.              against `ab'; then we want to ignore where we are now in
  3759.              the string in case this attempt to match fails.  */
  3760.           old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  3761.                              ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
  3762.                              : regstart[*p];
  3763.       DEBUG_PRINT2 ("  old_regstart: %d\n", 
  3764.              POINTER_TO_OFFSET (old_regstart[*p]));
  3765.  
  3766.           regstart[*p] = d;
  3767.       DEBUG_PRINT2 ("  regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
  3768.  
  3769.           IS_ACTIVE (reg_info[*p]) = 1;
  3770.           MATCHED_SOMETHING (reg_info[*p]) = 0;
  3771.           
  3772.           /* This is the new highest active register.  */
  3773.           highest_active_reg = *p;
  3774.           
  3775.           /* If nothing was active before, this is the new lowest active
  3776.              register.  */
  3777.           if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  3778.             lowest_active_reg = *p;
  3779.  
  3780.           /* Move past the register number and inner group count.  */
  3781.           p += 2;
  3782.           break;
  3783.  
  3784.  
  3785.         /* The stop_memory opcode represents the end of a group.  Its
  3786.            arguments are the same as start_memory's: the register
  3787.            number, and the number of inner groups.  */
  3788.     case stop_memory:
  3789.       DEBUG_PRINT3 ("EXECUTING stop_memory %d (%d):\n", *p, p[1]);
  3790.              
  3791.           /* We need to save the string position the last time we were at
  3792.              this close-group operator in case the group is operated
  3793.              upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
  3794.              against `aba'; then we want to ignore where we are now in
  3795.              the string in case this attempt to match fails.  */
  3796.           old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  3797.                            ? REG_UNSET (regend[*p]) ? d : regend[*p]
  3798.                : regend[*p];
  3799.       DEBUG_PRINT2 ("      old_regend: %d\n", 
  3800.              POINTER_TO_OFFSET (old_regend[*p]));
  3801.  
  3802.           regend[*p] = d;
  3803.       DEBUG_PRINT2 ("      regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
  3804.  
  3805.           /* This register isn't active anymore.  */
  3806.           IS_ACTIVE (reg_info[*p]) = 0;
  3807.           
  3808.           /* If this was the only register active, nothing is active
  3809.              anymore.  */
  3810.           if (lowest_active_reg == highest_active_reg)
  3811.             {
  3812.               lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3813.               highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3814.             }
  3815.           else
  3816.             { /* We must scan for the new highest active register, since
  3817.                  it isn't necessarily one less than now: consider
  3818.                  (a(b)c(d(e)f)g).  When group 3 ends, after the f), the
  3819.                  new highest active register is 1.  */
  3820.               unsigned char r = *p - 1;
  3821.               while (r > 0 && !IS_ACTIVE (reg_info[r]))
  3822.                 r--;
  3823.               
  3824.               /* If we end up at register zero, that means that we saved
  3825.                  the registers as the result of an `on_failure_jump', not
  3826.                  a `start_memory', and we jumped to past the innermost
  3827.                  `stop_memory'.  For example, in ((.)*) we save
  3828.                  registers 1 and 2 as a result of the *, but when we pop
  3829.                  back to the second ), we are at the stop_memory 1.
  3830.                  Thus, nothing is active.  */
  3831.           if (r == 0)
  3832.                 {
  3833.                   lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  3834.                   highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  3835.                 }
  3836.               else
  3837.                 highest_active_reg = r;
  3838.             }
  3839.           
  3840.           /* If just failed to match something this time around with a
  3841.              group that's operated on by a repetition operator, try to
  3842.              force exit from the ``loop'', and restore the register
  3843.              information for this group that we had before trying this
  3844.              last match.  */
  3845.           if ((!MATCHED_SOMETHING (reg_info[*p])
  3846.                || (re_opcode_t) p[-3] == start_memory)
  3847.           && (p + 2) < pend)              
  3848.             {
  3849.               boolean is_a_jump_n = false;
  3850.               
  3851.               p1 = p + 2;
  3852.               mcnt = 0;
  3853.               switch ((re_opcode_t) *p1++)
  3854.                 {
  3855.                   case jump_n:
  3856.             is_a_jump_n = true;
  3857.                   case pop_failure_jump:
  3858.           case maybe_pop_jump:
  3859.           case jump:
  3860.           case dummy_failure_jump:
  3861.                     EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  3862.             if (is_a_jump_n)
  3863.               p1 += 2;
  3864.                     break;
  3865.                   
  3866.                   default:
  3867.                     /* do nothing */ ;
  3868.                 }
  3869.           p1 += mcnt;
  3870.         
  3871.               /* If the next operation is a jump backwards in the pattern
  3872.              to an on_failure_jump right before the start_memory
  3873.                  corresponding to this stop_memory, exit from the loop
  3874.                  by forcing a failure after pushing on the stack the
  3875.                  on_failure_jump's jump in the pattern, and d.  */
  3876.               if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
  3877.                   && (re_opcode_t) p1[3] == start_memory && p1[4] == *p)
  3878.         {
  3879.                   /* If this group ever matched anything, then restore
  3880.                      what its registers were before trying this last
  3881.                      failed match, e.g., with `(a*)*b' against `ab' for
  3882.                      regstart[1], and, e.g., with `((a*)*(b*)*)*'
  3883.                      against `aba' for regend[3].
  3884.                      
  3885.                      Also restore the registers for inner groups for,
  3886.                      e.g., `((a*)(b*))*' against `aba' (register 3 would
  3887.                      otherwise get trashed).  */
  3888.                      
  3889.                   if (EVER_MATCHED_SOMETHING (reg_info[*p]))
  3890.             {
  3891.               unsigned r; 
  3892.         
  3893.                       EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
  3894.                       
  3895.               /* Restore this and inner groups' (if any) registers.  */
  3896.                       for (r = *p; r < (unsigned) *p + *(p + 1); r++)
  3897.                         {
  3898.                           regstart[r] = old_regstart[r];
  3899.  
  3900.                           /* xx why this test?  */
  3901.                           if ((int) old_regend[r] >= (int) regstart[r])
  3902.                             regend[r] = old_regend[r];
  3903.                         }     
  3904.                     }
  3905.           p1++;
  3906.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  3907.                   PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
  3908.  
  3909.                   goto fail;
  3910.                 }
  3911.             }
  3912.           
  3913.           /* Move past the register number and the inner group count.  */
  3914.           p += 2;
  3915.           break;
  3916.  
  3917.  
  3918.     /* \<digit> has been turned into a `duplicate' command which is
  3919.            followed by the numeric value of <digit> as the register number.  */
  3920.         case duplicate:
  3921.       {
  3922.         register const char *d2, *dend2;
  3923.         int regno = *p++;   /* Get which register to match against.  */
  3924.         DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
  3925.  
  3926.         /* Can't back reference a group which we've never matched.  */
  3927.             if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
  3928.               goto fail;
  3929.               
  3930.             /* Where in input to try to start matching.  */
  3931.             d2 = regstart[regno];
  3932.             
  3933.             /* Where to stop matching; if both the place to start and
  3934.                the place to stop matching are in the same string, then
  3935.                set to the place to stop, otherwise, for now have to use
  3936.                the end of the first string.  */
  3937.  
  3938.             dend2 = ((FIRST_STRING_P (regstart[regno]) 
  3939.               == FIRST_STRING_P (regend[regno]))
  3940.              ? regend[regno] : end_match_1);
  3941.         for (;;)
  3942.           {
  3943.         /* If necessary, advance to next segment in register
  3944.                    contents.  */
  3945.         while (d2 == dend2)
  3946.           {
  3947.             if (dend2 == end_match_2) break;
  3948.             if (dend2 == regend[regno]) break;
  3949.  
  3950.                     /* End of string1 => advance to string2. */
  3951.                     d2 = string2;
  3952.                     dend2 = regend[regno];
  3953.           }
  3954.         /* At end of register contents => success */
  3955.         if (d2 == dend2) break;
  3956.  
  3957.         /* If necessary, advance to next segment in data.  */
  3958.         PREFETCH ();
  3959.  
  3960.         /* How many characters left in this segment to match.  */
  3961.         mcnt = dend - d;
  3962.                 
  3963.         /* Want how many consecutive characters we can match in
  3964.                    one shot, so, if necessary, adjust the count.  */
  3965.                 if (mcnt > dend2 - d2)
  3966.           mcnt = dend2 - d2;
  3967.                   
  3968.         /* Compare that many; failure if mismatch, else move
  3969.                    past them.  */
  3970.         if (translate 
  3971.                     ? bcmp_translate (d, d2, mcnt, translate) 
  3972.                     : bcmp (d, d2, mcnt))
  3973.           goto fail;
  3974.         d += mcnt, d2 += mcnt;
  3975.           }
  3976.       }
  3977.       break;
  3978.  
  3979.  
  3980.         /* begline matches the empty string at the beginning of the string
  3981.            (unless `not_bol' is set in `bufp'), and, if
  3982.            `newline_anchor' is set, after newlines.  */
  3983.     case begline:
  3984.           DEBUG_PRINT1 ("EXECUTING begline.\n");
  3985.           
  3986.           if (AT_STRINGS_BEG (d))
  3987.             {
  3988.               if (!bufp->not_bol) break;
  3989.             }
  3990.           else if (d[-1] == '\n' && bufp->newline_anchor)
  3991.             {
  3992.               break;
  3993.             }
  3994.           /* In all other cases, we fail.  */
  3995.           goto fail;
  3996.  
  3997.  
  3998.         /* endline is the dual of begline.  */
  3999.     case endline:
  4000.           DEBUG_PRINT1 ("EXECUTING endline.\n");
  4001.  
  4002.           if (AT_STRINGS_END (d))
  4003.             {
  4004.               if (!bufp->not_eol) break;
  4005.             }
  4006.           
  4007.           /* We have to ``prefetch'' the next character.  */
  4008.           else if ((d == end1 ? *string2 : *d) == '\n'
  4009.                    && bufp->newline_anchor)
  4010.             {
  4011.               break;
  4012.             }
  4013.           goto fail;
  4014.  
  4015.  
  4016.     /* Match at the very beginning of the data.  */
  4017.         case begbuf:
  4018.           DEBUG_PRINT1 ("EXECUTING begbuf.\n");
  4019.           if (AT_STRINGS_BEG (d))
  4020.             break;
  4021.           goto fail;
  4022.  
  4023.  
  4024.     /* Match at the very end of the data.  */
  4025.         case endbuf:
  4026.           DEBUG_PRINT1 ("EXECUTING endbuf.\n");
  4027.       if (AT_STRINGS_END (d))
  4028.         break;
  4029.           goto fail;
  4030.  
  4031.  
  4032.         /* on_failure_keep_string_jump is used to optimize `.*\n'.  It
  4033.            pushes NULL as the value for the string on the stack.  Then
  4034.            `pop_failure_point' will keep the current value for the
  4035.            string, instead of restoring it.  To see why, consider
  4036.            matching `foo\nbar' against `.*\n'.  The .* matches the foo;
  4037.            then the . fails against the \n.  But the next thing we want
  4038.            to do is match the \n against the \n; if we restored the
  4039.            string value, we would be back at the foo.
  4040.            
  4041.            Because this is used only in specific cases, we don't need to
  4042.            check all the things that `on_failure_jump' does, to make
  4043.            sure the right things get saved on the stack.  Hence we don't
  4044.            share its code.  The only reason to push anything on the
  4045.            stack at all is that otherwise we would have to change
  4046.            `anychar's code to do something besides goto fail in this
  4047.            case; that seems worse than this.  */
  4048.         case on_failure_keep_string_jump:
  4049.           DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
  4050.           
  4051.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4052.           DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
  4053.  
  4054.           PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
  4055.           break;
  4056.  
  4057.  
  4058.     /* Uses of on_failure_jump:
  4059.         
  4060.            Each alternative starts with an on_failure_jump that points
  4061.            to the beginning of the next alternative.  Each alternative
  4062.            except the last ends with a jump that in effect jumps past
  4063.            the rest of the alternatives.  (They really jump to the
  4064.            ending jump of the following alternative, because tensioning
  4065.            these jumps is a hassle.)
  4066.  
  4067.            Repeats start with an on_failure_jump that points past both
  4068.            the repetition text and either the following jump or
  4069.            pop_failure_jump back to this on_failure_jump.  */
  4070.     case on_failure_jump:
  4071.         on_failure:
  4072.           DEBUG_PRINT1 ("EXECUTING on_failure_jump");
  4073.  
  4074.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4075.           DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
  4076.  
  4077.           /* If this on_failure_jump comes right before a group (i.e.,
  4078.              the original * applied to a group), save the information
  4079.              for that group and all inner ones, so that if we fail back
  4080.              to this point, the group's information will be correct.
  4081.              For example, in \(a*\)*\1, we need the preceding group,
  4082.              and in \(\(a*\)b*\)\2, we need the inner group.  */
  4083.  
  4084.           /* We can't use `p' to check ahead because we push
  4085.              a failure point to `p + mcnt' after we do this.  */
  4086.           p1 = p;
  4087.  
  4088.           /* We need to skip no_op's before we look for the
  4089.              start_memory in case this on_failure_jump is happening as
  4090.              the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
  4091.              against aba.  */
  4092.           while (p1 < pend && (re_opcode_t) *p1 == no_op)
  4093.             p1++;
  4094.  
  4095.           if (p1 < pend && (re_opcode_t) *p1 == start_memory)
  4096.             {
  4097.               /* We have a new highest active register now.  This will
  4098.                  get reset at the start_memory we are about to get to,
  4099.                  but we will have saved all the registers relevant to
  4100.                  this repetition op, as described above.  */
  4101.               highest_active_reg = *(p1 + 1) + *(p1 + 2);
  4102.               if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  4103.                 lowest_active_reg = *(p1 + 1);
  4104.             }
  4105.  
  4106.           DEBUG_PRINT1 (":\n");
  4107.           PUSH_FAILURE_POINT (p + mcnt, d, -2);
  4108.           break;
  4109.  
  4110.  
  4111.         /* A smart repeat ends with `maybe_pop_jump'.
  4112.        We change it to either `pop_failure_jump' or `jump'.  */
  4113.         case maybe_pop_jump:
  4114.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4115.           DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
  4116.           {
  4117.         register unsigned char *p2 = p;
  4118.  
  4119.             /* Compare the beginning of the repeat with what in the
  4120.                pattern follows its end. If we can establish that there
  4121.                is nothing that they would both match, i.e., that we
  4122.                would have to backtrack because of (as in, e.g., `a*a')
  4123.                then we can change to pop_failure_jump, because we'll
  4124.                never have to backtrack.
  4125.                
  4126.                This is not true in the case of alternatives: in
  4127.                `(a|ab)*' we do need to backtrack to the `ab' alternative
  4128.                (e.g., if the string was `ab').  But instead of trying to
  4129.                detect that here, the alternative has put on a dummy
  4130.                failure point which is what we will end up popping.  */
  4131.  
  4132.         /* Skip over open/close-group commands.  */
  4133.         while (p2 + 2 < pend
  4134.            && ((re_opcode_t) *p2 == stop_memory
  4135.                || (re_opcode_t) *p2 == start_memory))
  4136.           p2 += 3;            /* Skip over args, too.  */
  4137.  
  4138.             /* If we're at the end of the pattern, we can change.  */
  4139.             if (p2 == pend)
  4140.           {
  4141.         /* Consider what happens when matching ":\(.*\)"
  4142.            against ":/".  I don't really understand this code
  4143.            yet.  */
  4144.               p[-3] = (unsigned char) pop_failure_jump;
  4145.                 DEBUG_PRINT1
  4146.                   ("  End of pattern: change to `pop_failure_jump'.\n");
  4147.               }
  4148.  
  4149.             else if ((re_opcode_t) *p2 == exactn
  4150.              || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
  4151.           {
  4152.         register unsigned char c
  4153.                   = *p2 == (unsigned char) endline ? '\n' : p2[2];
  4154.         p1 = p + mcnt;
  4155.  
  4156.                 /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
  4157.                    to the `maybe_finalize_jump' of this case.  Examine what 
  4158.                    follows.  */
  4159.                 if ((re_opcode_t) p1[3] == exactn && p1[5] != c)
  4160.                   {
  4161.               p[-3] = (unsigned char) pop_failure_jump;
  4162.                     DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.\n",
  4163.                                   c, p1[5]);
  4164.                   }
  4165.                   
  4166.         else if ((re_opcode_t) p1[3] == charset
  4167.              || (re_opcode_t) p1[3] == charset_not)
  4168.           {
  4169.             int not = (re_opcode_t) p1[3] == charset_not;
  4170.                     
  4171.             if (c < (unsigned char) (p1[4] * BYTEWIDTH)
  4172.             && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  4173.               not = !not;
  4174.  
  4175.                     /* `not' is equal to 1 if c would match, which means
  4176.                         that we can't change to pop_failure_jump.  */
  4177.             if (!not)
  4178.                       {
  4179.                   p[-3] = (unsigned char) pop_failure_jump;
  4180.                         DEBUG_PRINT1 ("  No match => pop_failure_jump.\n");
  4181.                       }
  4182.           }
  4183.           }
  4184.       }
  4185.       p -= 2;        /* Point at relative address again.  */
  4186.       if ((re_opcode_t) p[-1] != pop_failure_jump)
  4187.         {
  4188.           p[-1] = (unsigned char) jump;
  4189.               DEBUG_PRINT1 ("  Match => jump.\n");
  4190.           goto unconditional_jump;
  4191.         }
  4192.         /* Note fall through.  */
  4193.  
  4194.  
  4195.     /* The end of a simple repeat has a pop_failure_jump back to
  4196.            its matching on_failure_jump, where the latter will push a
  4197.            failure point.  The pop_failure_jump takes off failure
  4198.            points put on by this pop_failure_jump's matching
  4199.            on_failure_jump; we got through the pattern to here from the
  4200.            matching on_failure_jump, so didn't fail.  */
  4201.         case pop_failure_jump:
  4202.           {
  4203.             /* We need to pass separate storage for the lowest and
  4204.                highest registers, even though we don't care about the
  4205.                actual values.  Otherwise, we will restore only one
  4206.                register from the stack, since lowest will == highest in
  4207.                `pop_failure_point'.  */
  4208.             unsigned dummy_low_reg, dummy_high_reg;
  4209.             unsigned char *pdummy;
  4210.             const char *sdummy;
  4211.  
  4212.             DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
  4213.             POP_FAILURE_POINT (sdummy, pdummy,
  4214.                                dummy_low_reg, dummy_high_reg,
  4215.                                reg_dummy, reg_dummy, reg_info_dummy);
  4216.           }
  4217.           /* Note fall through.  */
  4218.  
  4219.           
  4220.         /* Unconditionally jump (without popping any failure points).  */
  4221.         case jump:
  4222.     unconditional_jump:
  4223.       EXTRACT_NUMBER_AND_INCR (mcnt, p);    /* Get the amount to jump.  */
  4224.           DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
  4225.       p += mcnt;                /* Do the jump.  */
  4226.           DEBUG_PRINT2 ("(to 0x%x).\n", p);
  4227.       break;
  4228.  
  4229.     
  4230.         /* We need this opcode so we can detect where alternatives end
  4231.            in `group_match_null_string_p' et al.  */
  4232.         case jump_past_alt:
  4233.           DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
  4234.           goto unconditional_jump;
  4235.  
  4236.  
  4237.         /* Normally, the on_failure_jump pushes a failure point, which
  4238.            then gets popped at pop_failure_jump.  We will end up at
  4239.            pop_failure_jump, also, and with a pattern of, say, `a+', we
  4240.            are skipping over the on_failure_jump, so we have to push
  4241.            something meaningless for pop_failure_jump to pop.  */
  4242.         case dummy_failure_jump:
  4243.           DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
  4244.           /* It doesn't matter what we push for the string here.  What
  4245.              the code at `fail' tests is the value for the pattern.  */
  4246.           PUSH_FAILURE_POINT (0, 0, -2);
  4247.           goto unconditional_jump;
  4248.  
  4249.  
  4250.         /* At the end of an alternative, we need to push a dummy failure
  4251.            point in case we are followed by a `pop_failure_jump', because
  4252.            we don't want the failure point for the alternative to be
  4253.            popped.  For example, matching `(a|ab)*' against `aab'
  4254.            requires that we match the `ab' alternative.  */
  4255.         case push_dummy_failure:
  4256.           DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
  4257.           /* See comments just above at `dummy_failure_jump' about the
  4258.              two zeroes.  */
  4259.           PUSH_FAILURE_POINT (0, 0, -2);
  4260.           break;
  4261.  
  4262.         /* Have to succeed matching what follows at least n times.
  4263.            After that, handle like `on_failure_jump'.  */
  4264.         case succeed_n: 
  4265.           EXTRACT_NUMBER (mcnt, p + 2);
  4266.           DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
  4267.  
  4268.           assert (mcnt >= 0);
  4269.           /* Originally, this is how many times we HAVE to succeed.  */
  4270.           if (mcnt > 0)
  4271.             {
  4272.                mcnt--;
  4273.            p += 2;
  4274.                STORE_NUMBER_AND_INCR (p, mcnt);
  4275.                DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p, mcnt);
  4276.             }
  4277.       else if (mcnt == 0)
  4278.             {
  4279.               DEBUG_PRINT2 ("  Setting two bytes from 0x%x to no_op.\n", p+2);
  4280.           p[2] = (unsigned char) no_op;
  4281.               p[3] = (unsigned char) no_op;
  4282.               goto on_failure;
  4283.             }
  4284.           break;
  4285.         
  4286.         case jump_n: 
  4287.           EXTRACT_NUMBER (mcnt, p + 2);
  4288.           DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
  4289.  
  4290.           /* Originally, this is how many times we CAN jump.  */
  4291.           if (mcnt)
  4292.             {
  4293.                mcnt--;
  4294.                STORE_NUMBER (p + 2, mcnt);
  4295.            goto unconditional_jump;         
  4296.             }
  4297.           /* If don't have to jump any more, skip over the rest of command.  */
  4298.       else      
  4299.         p += 4;             
  4300.           break;
  4301.         
  4302.     case set_number_at:
  4303.       {
  4304.             DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
  4305.  
  4306.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4307.             p1 = p + mcnt;
  4308.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  4309.             DEBUG_PRINT3 ("  Setting 0x%x to %d.\n", p1, mcnt);
  4310.         STORE_NUMBER (p1, mcnt);
  4311.             break;
  4312.           }
  4313.  
  4314.         case wordbound:
  4315.           DEBUG_PRINT1 ("EXECUTING wordbound.\n");
  4316.           if (AT_WORD_BOUNDARY (d))
  4317.         break;
  4318.           goto fail;
  4319.  
  4320.     case notwordbound:
  4321.           DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
  4322.       if (AT_WORD_BOUNDARY (d))
  4323.         goto fail;
  4324.           break;
  4325.  
  4326.     case wordbeg:
  4327.           DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
  4328.       if (WORDCHAR_P (d) && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
  4329.         break;
  4330.           goto fail;
  4331.  
  4332.     case wordend:
  4333.           DEBUG_PRINT1 ("EXECUTING wordend.\n");
  4334.       if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
  4335.               && (!WORDCHAR_P (d) || AT_STRINGS_END (d)))
  4336.         break;
  4337.           goto fail;
  4338.  
  4339. #ifdef emacs
  4340. #ifdef emacs19
  4341.       case before_dot:
  4342.           DEBUG_PRINT1 ("EXECUTING before_dot.\n");
  4343.        if (PTR_CHAR_POS ((unsigned char *) d) >= point)
  4344.           goto fail;
  4345.         break;
  4346.   
  4347.       case at_dot:
  4348.           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
  4349.        if (PTR_CHAR_POS ((unsigned char *) d) != point)
  4350.           goto fail;
  4351.         break;
  4352.   
  4353.       case after_dot:
  4354.           DEBUG_PRINT1 ("EXECUTING after_dot.\n");
  4355.           if (PTR_CHAR_POS ((unsigned char *) d) <= point)
  4356.           goto fail;
  4357.         break;
  4358. #else /* not emacs19 */
  4359.     case at_dot:
  4360.           DEBUG_PRINT1 ("EXECUTING at_dot.\n");
  4361.       if (PTR_CHAR_POS ((unsigned char *) d) + 1 != point)
  4362.         goto fail;
  4363.       break;
  4364. #endif /* not emacs19 */
  4365.  
  4366.     case syntaxspec:
  4367.           DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
  4368.       mcnt = *p++;
  4369.       goto matchsyntax;
  4370.  
  4371.         case wordchar:
  4372.           DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
  4373.       mcnt = (int) Sword;
  4374.         matchsyntax:
  4375.       PREFETCH ();
  4376.       if (SYNTAX (*d++) != (enum syntaxcode) mcnt)
  4377.             goto fail;
  4378.           SET_REGS_MATCHED ();
  4379.       break;
  4380.  
  4381.     case notsyntaxspec:
  4382.           DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
  4383.       mcnt = *p++;
  4384.       goto matchnotsyntax;
  4385.  
  4386.         case notwordchar:
  4387.           DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
  4388.       mcnt = (int) Sword;
  4389.         matchnotsyntax:
  4390.       PREFETCH ();
  4391.       if (SYNTAX (*d++) == (enum syntaxcode) mcnt)
  4392.             goto fail;
  4393.       SET_REGS_MATCHED ();
  4394.           break;
  4395.  
  4396. #else /* not emacs */
  4397.     case wordchar:
  4398.           DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
  4399.       PREFETCH ();
  4400.           if (!WORDCHAR_P (d))
  4401.             goto fail;
  4402.       SET_REGS_MATCHED ();
  4403.           d++;
  4404.       break;
  4405.       
  4406.     case notwordchar:
  4407.           DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
  4408.       PREFETCH ();
  4409.       if (WORDCHAR_P (d))
  4410.             goto fail;
  4411.           SET_REGS_MATCHED ();
  4412.           d++;
  4413.       break;
  4414. #endif /* not emacs */
  4415.           
  4416.         default:
  4417.           abort ();
  4418.     }
  4419.       continue;  /* Successfully executed one pattern command; keep going.  */
  4420.  
  4421.  
  4422.     /* We goto here if a matching operation fails. */
  4423.     fail:
  4424.       if (!FAIL_STACK_EMPTY ())
  4425.     { /* A restart point is known.  Restore to that state.  */
  4426.           DEBUG_PRINT1 ("\nFAIL:\n");
  4427.           POP_FAILURE_POINT (d, p,
  4428.                              lowest_active_reg, highest_active_reg,
  4429.                              regstart, regend, reg_info);
  4430.  
  4431.           /* If this failure point is a dummy, try the next one.  */
  4432.           if (!p)
  4433.         goto fail;
  4434.  
  4435.           /* If we failed to the end of the pattern, don't examine *p.  */
  4436.       assert (p <= pend);
  4437.           if (p < pend)
  4438.             {
  4439.               boolean is_a_jump_n = false;
  4440.               
  4441.               /* If failed to a backwards jump that's part of a repetition
  4442.                  loop, need to pop this failure point and use the next one.  */
  4443.               switch ((re_opcode_t) *p)
  4444.                 {
  4445.                 case jump_n:
  4446.                   is_a_jump_n = true;
  4447.                 case maybe_pop_jump:
  4448.                 case pop_failure_jump:
  4449.                 case jump:
  4450.                   p1 = p + 1;
  4451.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4452.                   p1 += mcnt;    
  4453.  
  4454.                   if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
  4455.                       || (!is_a_jump_n
  4456.                           && (re_opcode_t) *p1 == on_failure_jump))
  4457.                     goto fail;
  4458.                   break;
  4459.                 default:
  4460.                   /* do nothing */ ;
  4461.                 }
  4462.             }
  4463.  
  4464.           if (d >= string1 && d <= end1)
  4465.         dend = end_match_1;
  4466.         }
  4467.       else
  4468.         break;   /* Matching at this starting point really fails.  */
  4469.     } /* for (;;) */
  4470.  
  4471.   if (best_regs_set)
  4472.     goto restore_best_regs;
  4473.  
  4474.   FREE_VARIABLES ();
  4475.  
  4476.   return -1;                     /* Failure to match.  */
  4477. } /* re_match_2 */
  4478.  
  4479. /* Subroutine definitions for re_match_2.  */
  4480.  
  4481.  
  4482. /* We are passed P pointing to a register number after a start_memory.
  4483.    
  4484.    Return true if the pattern up to the corresponding stop_memory can
  4485.    match the empty string, and false otherwise.
  4486.    
  4487.    If we find the matching stop_memory, sets P to point to one past its number.
  4488.    Otherwise, sets P to an undefined byte less than or equal to END.
  4489.  
  4490.    We don't handle duplicates properly (yet).  */
  4491.  
  4492. static boolean
  4493. group_match_null_string_p (p, end, reg_info)
  4494.     unsigned char **p, *end;
  4495.     register_info_type *reg_info;
  4496. {
  4497.   int mcnt;
  4498.   /* Point to after the args to the start_memory.  */
  4499.   unsigned char *p1 = *p + 2;
  4500.   
  4501.   while (p1 < end)
  4502.     {
  4503.       /* Skip over opcodes that can match nothing, and return true or
  4504.      false, as appropriate, when we get to one that can't, or to the
  4505.          matching stop_memory.  */
  4506.       
  4507.       switch ((re_opcode_t) *p1)
  4508.         {
  4509.         /* Could be either a loop or a series of alternatives.  */
  4510.         case on_failure_jump:
  4511.           p1++;
  4512.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4513.           
  4514.           /* If the next operation is not a jump backwards in the
  4515.          pattern.  */
  4516.  
  4517.       if (mcnt >= 0)
  4518.         {
  4519.               /* Go through the on_failure_jumps of the alternatives,
  4520.                  seeing if any of the alternatives cannot match nothing.
  4521.                  The last alternative starts with only a jump,
  4522.                  whereas the rest start with on_failure_jump and end
  4523.                  with a jump, e.g., here is the pattern for `a|b|c':
  4524.  
  4525.                  /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
  4526.                  /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
  4527.                  /exactn/1/c                        
  4528.  
  4529.                  So, we have to first go through the first (n-1)
  4530.                  alternatives and then deal with the last one separately.  */
  4531.  
  4532.  
  4533.               /* Deal with the first (n-1) alternatives, which start
  4534.                  with an on_failure_jump (see above) that jumps to right
  4535.                  past a jump_past_alt.  */
  4536.  
  4537.               while ((re_opcode_t) p1[mcnt-3] == jump_past_alt)
  4538.                 {
  4539.                   /* `mcnt' holds how many bytes long the alternative
  4540.                      is, including the ending `jump_past_alt' and
  4541.                      its number.  */
  4542.  
  4543.                   if (!alt_match_null_string_p (p1, p1 + mcnt - 3, 
  4544.                                       reg_info))
  4545.                     return false;
  4546.  
  4547.                   /* Move to right after this alternative, including the
  4548.              jump_past_alt.  */
  4549.                   p1 += mcnt;    
  4550.  
  4551.                   /* Break if it's the beginning of an n-th alternative
  4552.                      that doesn't begin with an on_failure_jump.  */
  4553.                   if ((re_opcode_t) *p1 != on_failure_jump)
  4554.                     break;
  4555.         
  4556.           /* Still have to check that it's not an n-th
  4557.              alternative that starts with an on_failure_jump.  */
  4558.           p1++;
  4559.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4560.                   if ((re_opcode_t) p1[mcnt-3] != jump_past_alt)
  4561.                     {
  4562.               /* Get to the beginning of the n-th alternative.  */
  4563.                       p1 -= 3;
  4564.                       break;
  4565.                     }
  4566.                 }
  4567.  
  4568.               /* Deal with the last alternative: go back and get number
  4569.                  of the `jump_past_alt' just before it.  `mcnt' contains
  4570.                  the length of the alternative.  */
  4571.               EXTRACT_NUMBER (mcnt, p1 - 2);
  4572.  
  4573.               if (!alt_match_null_string_p (p1, p1 + mcnt, reg_info))
  4574.                 return false;
  4575.  
  4576.               p1 += mcnt;    /* Get past the n-th alternative.  */
  4577.             } /* if mcnt > 0 */
  4578.           break;
  4579.  
  4580.           
  4581.         case stop_memory:
  4582.       assert (p1[1] == **p);
  4583.           *p = p1 + 2;
  4584.           return true;
  4585.  
  4586.         
  4587.         default: 
  4588.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  4589.             return false;
  4590.         }
  4591.     } /* while p1 < end */
  4592.  
  4593.   return false;
  4594. } /* group_match_null_string_p */
  4595.  
  4596.  
  4597. /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
  4598.    It expects P to be the first byte of a single alternative and END one
  4599.    byte past the last. The alternative can contain groups.  */
  4600.    
  4601. static boolean
  4602. alt_match_null_string_p (p, end, reg_info)
  4603.     unsigned char *p, *end;
  4604.     register_info_type *reg_info;
  4605. {
  4606.   int mcnt;
  4607.   unsigned char *p1 = p;
  4608.   
  4609.   while (p1 < end)
  4610.     {
  4611.       /* Skip over opcodes that can match nothing, and break when we get 
  4612.          to one that can't.  */
  4613.       
  4614.       switch ((re_opcode_t) *p1)
  4615.         {
  4616.     /* It's a loop.  */
  4617.         case on_failure_jump:
  4618.           p1++;
  4619.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4620.           p1 += mcnt;
  4621.           break;
  4622.           
  4623.     default: 
  4624.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  4625.             return false;
  4626.         }
  4627.     }  /* while p1 < end */
  4628.  
  4629.   return true;
  4630. } /* alt_match_null_string_p */
  4631.  
  4632.  
  4633. /* Deals with the ops common to group_match_null_string_p and
  4634.    alt_match_null_string_p.  
  4635.    
  4636.    Sets P to one after the op and its arguments, if any.  */
  4637.  
  4638. static boolean
  4639. common_op_match_null_string_p (p, end, reg_info)
  4640.     unsigned char **p, *end;
  4641.     register_info_type *reg_info;
  4642. {
  4643.   int mcnt;
  4644.   boolean ret;
  4645.   int reg_no;
  4646.   unsigned char *p1 = *p;
  4647.  
  4648.   switch ((re_opcode_t) *p1++)
  4649.     {
  4650.     case no_op:
  4651.     case begline:
  4652.     case endline:
  4653.     case begbuf:
  4654.     case endbuf:
  4655.     case wordbeg:
  4656.     case wordend:
  4657.     case wordbound:
  4658.     case notwordbound:
  4659. #ifdef emacs
  4660.     case before_dot:
  4661.     case at_dot:
  4662.     case after_dot:
  4663. #endif
  4664.       break;
  4665.  
  4666.     case start_memory:
  4667.       reg_no = *p1;
  4668.       assert (reg_no > 0 && reg_no <= MAX_REGNUM);
  4669.       ret = group_match_null_string_p (&p1, end, reg_info);
  4670.       
  4671.       /* Have to set this here in case we're checking a group which
  4672.          contains a group and a back reference to it.  */
  4673.  
  4674.       if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
  4675.         REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
  4676.  
  4677.       if (!ret)
  4678.         return false;
  4679.       break;
  4680.           
  4681.     /* If this is an optimized succeed_n for zero times, make the jump.  */
  4682.     case jump:
  4683.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4684.       if (mcnt >= 0)
  4685.         p1 += mcnt;
  4686.       else
  4687.         return false;
  4688.       break;
  4689.  
  4690.     case succeed_n:
  4691.       /* Get to the number of times to succeed.  */
  4692.       p1 += 2;        
  4693.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4694.  
  4695.       if (mcnt == 0)
  4696.         {
  4697.           p1 -= 4;
  4698.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  4699.           p1 += mcnt;
  4700.         }
  4701.       else
  4702.         return false;
  4703.       break;
  4704.  
  4705.     case duplicate: 
  4706.       if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
  4707.         return false;
  4708.       break;
  4709.  
  4710.     case set_number_at:
  4711.       p1 += 4;
  4712.  
  4713.     default:
  4714.       /* All other opcodes mean we cannot match the empty string.  */
  4715.       return false;
  4716.   }
  4717.  
  4718.   *p = p1;
  4719.   return true;
  4720. } /* common_op_match_null_string_p */
  4721.  
  4722.  
  4723. /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
  4724.    bytes; nonzero otherwise.  */
  4725.    
  4726. static int
  4727. bcmp_translate (s1, s2, len, translate)
  4728.      unsigned char *s1, *s2;
  4729.      register int len;
  4730.      char *translate;
  4731. {
  4732.   register unsigned char *p1 = s1, *p2 = s2;
  4733.   while (len)
  4734.     {
  4735.       if (translate[*p1++] != translate[*p2++]) return 1;
  4736.       len--;
  4737.     }
  4738.   return 0;
  4739. }
  4740.  
  4741. /* Entry points for GNU code.  */
  4742.  
  4743. /* re_compile_pattern is the GNU regular expression compiler: it
  4744.    compiles PATTERN (of length SIZE) and puts the result in BUFP.
  4745.    Returns 0 if the pattern was valid, otherwise an error string.
  4746.    
  4747.    Assumes the `allocated' (and perhaps `buffer') and `translate' fields
  4748.    are set in BUFP on entry.
  4749.    
  4750.    We call regex_compile to do the actual compilation.  */
  4751.  
  4752. const char *
  4753. re_compile_pattern (pattern, length, bufp)
  4754.      const char *pattern;
  4755.      int length;
  4756.      struct re_pattern_buffer *bufp;
  4757. {
  4758.   reg_errcode_t ret;
  4759.   
  4760.   /* GNU code is written to assume at least RE_NREGS registers will be set
  4761.      (and at least one extra will be -1).  */
  4762.   bufp->regs_allocated = REGS_UNALLOCATED;
  4763.   
  4764.   /* And GNU code determines whether or not to get register information
  4765.      by passing null for the REGS argument to re_match, etc., not by
  4766.      setting no_sub.  */
  4767.   bufp->no_sub = 0;
  4768.   
  4769.   /* Match anchors at newline.  */
  4770.   bufp->newline_anchor = 1;
  4771.   
  4772.   ret = regex_compile (pattern, length, re_syntax_options, bufp);
  4773.  
  4774.   return re_error_msg[(int) ret];
  4775. }     
  4776.  
  4777. /* Entry points compatible with 4.2 BSD regex library.  We don't define
  4778.    them if this is an Emacs or POSIX compilation.  */
  4779.  
  4780. #if !defined (emacs) && !defined (_POSIX_SOURCE)
  4781.  
  4782. /* BSD has one and only one pattern buffer.  */
  4783. static struct re_pattern_buffer re_comp_buf;
  4784.  
  4785. char *
  4786. re_comp (s)
  4787.     const char *s;
  4788. {
  4789.   reg_errcode_t ret;
  4790.   
  4791.   if (!s)
  4792.     {
  4793.       if (!re_comp_buf.buffer)
  4794.     return "No previous regular expression";
  4795.       return 0;
  4796.     }
  4797.  
  4798.   if (!re_comp_buf.buffer)
  4799.     {
  4800.       re_comp_buf.buffer = (unsigned char *) malloc (200);
  4801.       if (re_comp_buf.buffer == NULL)
  4802.         return "Memory exhausted";
  4803.       re_comp_buf.allocated = 200;
  4804.  
  4805.       re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
  4806.       if (re_comp_buf.fastmap == NULL)
  4807.     return "Memory exhausted";
  4808.     }
  4809.  
  4810.   /* Since `re_exec' always passes NULL for the `regs' argument, we
  4811.      don't need to initialize the pattern buffer fields which affect it.  */
  4812.  
  4813.   /* Match anchors at newlines.  */
  4814.   re_comp_buf.newline_anchor = 1;
  4815.  
  4816.   ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
  4817.   
  4818.   /* Yes, we're discarding `const' here.  */
  4819.   return (char *) re_error_msg[(int) ret];
  4820. }
  4821.  
  4822.  
  4823. int
  4824. re_exec (s)
  4825.     const char *s;
  4826. {
  4827.   const int len = strlen (s);
  4828.   return
  4829.     0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
  4830. }
  4831. #endif /* not emacs and not _POSIX_SOURCE */
  4832.  
  4833. /* POSIX.2 functions.  Don't define these for Emacs.  */
  4834.  
  4835. #ifndef emacs
  4836.  
  4837. /* regcomp takes a regular expression as a string and compiles it.
  4838.  
  4839.    PREG is a regex_t *.  We do not expect any fields to be initialized,
  4840.    since POSIX says we shouldn't.  Thus, we set
  4841.  
  4842.      `buffer' to the compiled pattern;
  4843.      `used' to the length of the compiled pattern;
  4844.      `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
  4845.        REG_EXTENDED bit in CFLAGS is set; otherwise, to
  4846.        RE_SYNTAX_POSIX_BASIC;
  4847.      `newline_anchor' to REG_NEWLINE being set in CFLAGS;
  4848.      `fastmap' and `fastmap_accurate' to zero;
  4849.      `re_nsub' to the number of subexpressions in PATTERN.
  4850.  
  4851.    PATTERN is the address of the pattern string.
  4852.  
  4853.    CFLAGS is a series of bits which affect compilation.
  4854.  
  4855.      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
  4856.      use POSIX basic syntax.
  4857.  
  4858.      If REG_NEWLINE is set, then . and [^...] don't match newline.
  4859.      Also, regexec will try a match beginning after every newline.
  4860.  
  4861.      If REG_ICASE is set, then we considers upper- and lowercase
  4862.      versions of letters to be equivalent when matching.
  4863.  
  4864.      If REG_NOSUB is set, then when PREG is passed to regexec, that
  4865.      routine will report only success or failure, and nothing about the
  4866.      registers.
  4867.  
  4868.    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
  4869.    the return codes and their meanings.)  */
  4870.  
  4871. int
  4872. regcomp (preg, pattern, cflags)
  4873.     regex_t *preg;
  4874.     const char *pattern; 
  4875.     int cflags;
  4876. {
  4877.   reg_errcode_t ret;
  4878.   unsigned syntax
  4879.     = (cflags & REG_EXTENDED) ?
  4880.       RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
  4881.  
  4882.   /* regex_compile will allocate the space for the compiled pattern.  */
  4883.   preg->buffer = 0;
  4884.   preg->allocated = 0;
  4885.   preg->used = 0;
  4886.   
  4887.   /* Don't bother to use a fastmap when searching.  This simplifies the
  4888.      REG_NEWLINE case: if we used a fastmap, we'd have to put all the
  4889.      characters after newlines into the fastmap.  This way, we just try
  4890.      every character.  */
  4891.   preg->fastmap = 0;
  4892.   
  4893.   if (cflags & REG_ICASE)
  4894.     {
  4895.       unsigned i;
  4896.       
  4897.       preg->translate = (char *) malloc (CHAR_SET_SIZE);
  4898.       if (preg->translate == NULL)
  4899.         return (int) REG_ESPACE;
  4900.  
  4901.       /* Map uppercase characters to corresponding lowercase ones.  */
  4902.       for (i = 0; i < CHAR_SET_SIZE; i++)
  4903.         preg->translate[i] = ISUPPER (i) ? tolower (i) : i;
  4904.     }
  4905.   else
  4906.     preg->translate = NULL;
  4907.  
  4908.   /* If REG_NEWLINE is set, newlines are treated differently.  */
  4909.   if (cflags & REG_NEWLINE)
  4910.     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
  4911.       syntax &= ~RE_DOT_NEWLINE;
  4912.       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
  4913.       /* It also changes the matching behavior.  */
  4914.       preg->newline_anchor = 1;
  4915.     }
  4916.   else
  4917.     preg->newline_anchor = 0;
  4918.  
  4919.   preg->no_sub = !!(cflags & REG_NOSUB);
  4920.  
  4921.   /* POSIX says a null character in the pattern terminates it, so we 
  4922.      can use strlen here in compiling the pattern.  */
  4923.   ret = regex_compile (pattern, strlen (pattern), syntax, preg);
  4924.   
  4925.   /* POSIX doesn't distinguish between an unmatched open-group and an
  4926.      unmatched close-group: both are REG_EPAREN.  */
  4927.   if (ret == REG_ERPAREN) ret = REG_EPAREN;
  4928.   
  4929.   return (int) ret;
  4930. }
  4931.  
  4932.  
  4933. /* regexec searches for a given pattern, specified by PREG, in the
  4934.    string STRING.
  4935.    
  4936.    If NMATCH is zero or REG_NOSUB was set in the cflags argument to
  4937.    `regcomp', we ignore PMATCH.  Otherwise, we assume PMATCH has at
  4938.    least NMATCH elements, and we set them to the offsets of the
  4939.    corresponding matched substrings.
  4940.    
  4941.    EFLAGS specifies `execution flags' which affect matching: if
  4942.    REG_NOTBOL is set, then ^ does not match at the beginning of the
  4943.    string; if REG_NOTEOL is set, then $ does not match at the end.
  4944.    
  4945.    We return 0 if we find a match and REG_NOMATCH if not.  */
  4946.  
  4947. int
  4948. regexec (preg, string, nmatch, pmatch, eflags)
  4949.     const regex_t *preg;
  4950.     const char *string; 
  4951.     size_t nmatch; 
  4952.     regmatch_t pmatch[]; 
  4953.     int eflags;
  4954. {
  4955.   int ret;
  4956.   struct re_registers regs;
  4957.   regex_t private_preg;
  4958.   int len = strlen (string);
  4959.   boolean want_reg_info = !preg->no_sub && nmatch > 0;
  4960.  
  4961.   private_preg = *preg;
  4962.   
  4963.   private_preg.not_bol = !!(eflags & REG_NOTBOL);
  4964.   private_preg.not_eol = !!(eflags & REG_NOTEOL);
  4965.   
  4966.   /* The user has told us exactly how many registers to return
  4967.      information about, via `nmatch'.  We have to pass that on to the
  4968.      matching routines.  */
  4969.   private_preg.regs_allocated = REGS_FIXED;
  4970.   
  4971.   if (want_reg_info)
  4972.     {
  4973.       regs.num_regs = nmatch;
  4974.       regs.start = TALLOC (nmatch, regoff_t);
  4975.       regs.end = TALLOC (nmatch, regoff_t);
  4976.       if (regs.start == NULL || regs.end == NULL)
  4977.         return (int) REG_NOMATCH;
  4978.     }
  4979.  
  4980.   /* Perform the searching operation.  */
  4981.   ret = re_search (&private_preg, string, len,
  4982.                    /* start: */ 0, /* range: */ len,
  4983.                    want_reg_info ? ®s : (struct re_registers *) 0);
  4984.   
  4985.   /* Copy the register information to the POSIX structure.  */
  4986.   if (want_reg_info)
  4987.     {
  4988.       if (ret >= 0)
  4989.         {
  4990.           unsigned r;
  4991.  
  4992.           for (r = 0; r < nmatch; r++)
  4993.             {
  4994.               pmatch[r].rm_so = regs.start[r];
  4995.               pmatch[r].rm_eo = regs.end[r];
  4996.             }
  4997.         }
  4998.  
  4999.       /* If we needed the temporary register info, free the space now.  */
  5000.       free (regs.start);
  5001.       free (regs.end);
  5002.     }
  5003.  
  5004.   /* We want zero return to mean success, unlike `re_search'.  */
  5005.   return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
  5006. }
  5007.  
  5008.  
  5009. /* Returns a message corresponding to an error code, ERRCODE, returned
  5010.    from either regcomp or regexec.   We don't use PREG here.  */
  5011.  
  5012. size_t
  5013. regerror (errcode, preg, errbuf, errbuf_size)
  5014.     int errcode;
  5015.     const regex_t *preg;
  5016.     char *errbuf;
  5017.     size_t errbuf_size;
  5018. {
  5019.   const char *msg;
  5020.   size_t msg_size;
  5021.  
  5022.   if (errcode < 0
  5023.       || errcode >= (sizeof (re_error_msg) / sizeof (re_error_msg[0])))
  5024.     /* Only error codes returned by the rest of the code should be passed 
  5025.        to this routine.  If we are given anything else, or if other regex
  5026.        code generates an invalid error code, then the program has a bug.
  5027.        Dump core so we can fix it.  */
  5028.     abort ();
  5029.  
  5030.   msg = re_error_msg[errcode];
  5031.  
  5032.   /* POSIX doesn't require that we do anything in this case, but why
  5033.      not be nice.  */
  5034.   if (! msg)
  5035.     msg = "Success";
  5036.  
  5037.   msg_size = strlen (msg) + 1; /* Includes the null.  */
  5038.   
  5039.   if (errbuf_size != 0)
  5040.     {
  5041.       if (msg_size > errbuf_size)
  5042.         {
  5043.           strncpy (errbuf, msg, errbuf_size - 1);
  5044.           errbuf[errbuf_size - 1] = 0;
  5045.         }
  5046.       else
  5047.         strcpy (errbuf, msg);
  5048.     }
  5049.  
  5050.   return msg_size;
  5051. }
  5052.  
  5053.  
  5054. /* Free dynamically allocated space used by PREG.  */
  5055.  
  5056. void
  5057. regfree (preg)
  5058.     regex_t *preg;
  5059. {
  5060.   if (preg->buffer != NULL)
  5061.     free (preg->buffer);
  5062.   preg->buffer = NULL;
  5063.   
  5064.   preg->allocated = 0;
  5065.   preg->used = 0;
  5066.  
  5067.   if (preg->fastmap != NULL)
  5068.     free (preg->fastmap);
  5069.   preg->fastmap = NULL;
  5070.   preg->fastmap_accurate = 0;
  5071.  
  5072.   if (preg->translate != NULL)
  5073.     free (preg->translate);
  5074.   preg->translate = NULL;
  5075. }
  5076.  
  5077. #endif /* not emacs  */
  5078.  
  5079. /*
  5080. Local variables:
  5081. make-backup-files: t
  5082. version-control: t
  5083. trim-versions-without-asking: nil
  5084. End:
  5085. */
  5086.